Chart Axis Font Colors


I created a sample blazor webassemby project to display levels of a tank.
How do i change the Y axis color of the numerals 0-600? I can change the color of the vertical bar, but the numbers don't change color


@TankName














@MaterialName


The chart axis label color is specified via the --rz-chart-axis-label-color CSS variable.

axis-label-color

You can set it like this:

<RadzenChart style="--rz-chart-axis-label-color: red" ...>

Thank you, that works!