Home > Software engineering >  Livechart winforms solidgague thickness problem
Livechart winforms solidgague thickness problem

Time:10-05

I want to change circle thickness inside the solidgauge.[1]: https://img.codepudding.com/202110/273cd9141abb4e8cbed65947283506d1.png

CodePudding user response:

You have to set the Gauge.InnerRadius property:

<Gauge Height="150" Width="150"
       From="0" To="1" 
       Value="0.5" 
       InnerRadius="60" />
  • Related