Changing axis label color

I see where I can change the Stroke of RadzenCategoryAxis, RadzenValueAxis, and RadzenTicks but how can I change the color of the axis labels? Right now they're a dark gray which barely shows up on a black background. Thanks!

That color can be changed either from the theme builder:

Or just use CSS

.rz-tick-text {
  stroke: none;
  fill: red;
}
1 Like