Hi-
1.) Is it possible to change the color, size, etc. of the text within the xTrace Info Box? I’ve tried changing the style properties but it doesn’t apply. Is there somewhere I am missing to do this?
2.) Is it possible to change the color, size, format, etc. of the text that represents the date shown for the xTrace?
Has there been any progress on this feature? I’ve had a few complaints that the info box text is difficult to read. I don’t see a way to change the text size or color.
This hasn’t been done yet. In another effort (still in progress), I’ve added a several CSS classes to the underlying chart library that will let you create style overrides to target this. I can update this thread once the library changes are part of a build and give you a style override that will meet your needs until I can expose those x-trace text properties in the TS chart.
Can you elaborate? I'm getting a lot of pressure to get this fixed. The default color schemes is very hard to see for the charts. Everything is light gray by default.
Yes, I’ve added CSS classes that will let you target the x-trace text via a style override rule that will look something like this:
.ia_timeMarker text {
fill: black !important;
}
This is not in place yet, but your rule will look something like that. It can also be made more specific to target just the text inside of the “box” portion of the display, if desired. !important will be needed to force the rule to override the inline SVG styles that are applied via default and component properties.
Check out the section on the docs site about modifying Perspective Themes. While this isn’t creating a modification to an existing theme, you’ll be adding a style rule to the core CSS files in the same way that you would modify a theme.
What is the state of this feature? I’m getting asked from a client to change the color on the x trace and the time range to be darker because the background color they are using is a light gray.
@jball did this ever get attention? As of 8.1.11 I don’t see anything obviously available to modify the text properties for the x-trace timestamp, this is really bothersome when you are trying to keep with a dark theme yet you need to set your chart background to something so light in order to see the timestamp value.
Hi all, with this being possible through theming, the request to add styling through component properties has been a lower priority. Given that this thread still has decent traction, I’ve bumped the priority of the internal ticket so we can make this available soon.