Hi all,
Just wondering how I change the progress value text color, currently I use the following in my progress bars:
<SfProgressBar ShowProgressValue="true" Height="250px" Width="250px" Type="ProgressType.Circular" Value="@request.PercentComplete" ProgressColor="@progresscolorfailed" Minimum="0" Maximum="100" TrackThickness="28" ProgressThickness="30">
I think I use something like the below however I can't work out how to re use the Value when it's inside the HTML:
<ProgressBarAnnotations>
<ProgressBarAnnotation Content="<div style='color:#ffffff;fill:#ffffff'><span></span></div>" />
</ProgressBarAnnotations>
I can see that the fill color is what I need to change in the CSS:
<text id="progressbarztoqgx4xmnl_circularLabel" font-size="20" font-style="Normal" font-family="Segoe UI" font-weight="Normal" text-anchor="middle" fill="#333333" x="125" y="137" width="230" height="230">37%</text>
Any help would be awesome.
Regards,
Leigh.