Unplanned
Last Updated: 27 Feb 2023 14:30 by John
John
Created on: 27 Feb 2023 14:30
Category: ProgressBar
Type: Feature Request
0
ProgressBar: Provide FontAttributes property

Provide an option to bold the text in the progress bar. For example exposing FontAttributes property.

 

Currently the option is to use implicit style:

<ContentPage.Resources>
    <ResourceDictionary>
        <Style TargetType="Label">
              <Setter Property="FontAttributes" Value="Italic"/>
         </Style>
   </ResourceDictionary>
</ContentPage.Resources>
<VerticalStackLayout>
          <telerik:RadLinearProgressBar Value="40" ValueDisplayMode="Percent"/>
</VerticalStackLayout>

0 comments