-
Would it make sense to add a stroke/text color field in the options record for Axis? I'm currently using the axis, but the color is always |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You can use CSS to change these visual properties: .domain { stroke: green; }
.tick line { stroke: green; }
.tick text { fill: green; } will turn your axis green. You can use this technique to tune other things like the font or font size, or if you want to hide the tick marks for example. |
Beta Was this translation helpful? Give feedback.
-
Cool. I did not think of that. Great solution though. |
Beta Was this translation helpful? Give feedback.
You can use CSS to change these visual properties:
will turn your axis green. You can use this technique to tune other things like the font or font size, or if you want to hide the tick marks for example.