Chart axis label color isn't editable #486
-
I'm unable to change the axis label text color when using a dark theme, it remains black. I've looked at the 'financial' example charts that show the charts using 'dark' theme and they appear to show the same thing. In CSS I've tried |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey, just use |
Beta Was this translation helpful? Give feedback.
Hey, just use
.axis-label { -fx-fill: white; }
. The reason is, that the Label is not rendered as a javafx text label but directly rendered to the graphics context where the paint style from the normal fill property is used. I have not investigated if it would be possible or desirable to change this.