Radial Gauge scale values color

Hello everyone, I am not able to change the colors of values in radial gauge scale component. It is showing grey but I would like to be able to specify a color for value like I can do for the stroke.

Hi @Hayk_Manukyan,

You can override the fill attribute of the .rz-tick-text CSS class:

.rz-gauge .rz-tick-text {
   fill: red !important;
}

If you need it for just one gauge then apply a custom CSS class:

<RadzenRadialGauge class="my-gauge">
.my-gauge .rz-tick-text {
   fill: green;
}