|
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 |
Answered by
gampleman
Jul 26, 2017
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. |
0 replies
Answer selected by
gampleman
|
Cool. I did not think of that. Great solution though. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.