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.
You can set it like this:
<RadzenChart style="--rz-chart-axis-label-color: red" ...>
Thank you, that works!