How to increase width of circular gauge ?

How to increase the rim width, increasing the RimThickness is not working?
Code:
    <gauge:SfCircularGauge BackgroundColor="Transparent" VerticalOptions="Center" HorizontalOptions="Center" HeightRequest="100" WidthRequest="100" >
      <gauge:SfCircularGauge.Scales>
        <gauge:Scale StartValue="0"
                      EndValue="100"
                      Interval="5"
                      StartAngle="270"
                      SweepAngle="360"
                      RimThickness="100"
                      RimColor="#FC3C39"
                      ShowLabels="false"
                      MinorTicksPerInterval="0"
                      ShowRim="true"
                      ShowTicks="false">
          <gauge:Scale.Pointers>
            <gauge:RangePointer Value="91" Color="#58D508" Thickness="50">
            </gauge:RangePointer>
          </gauge:Scale.Pointers>
        </gauge:Scale>
      </gauge:SfCircularGauge.Scales>
      <gauge:SfCircularGauge.Headers>
        <gauge:Header Text="91%" ForegroundColor="Black" Position="0.5,0.5">
        </gauge:Header>
      </gauge:SfCircularGauge.Headers>
    </gauge:SfCircularGauge>

Which is placed inside a stacklayout, but this code resulting in a circular gauge with a thin rim, the attached file is the desired one to implement.

3 Replies

SG Sri Gayathri Gopalakrishnan Syncfusion Team October 20, 2017 09:19 AM UTC

Hi,

Thanks for using Syncfusion Products,

Query:"How to increase the rim width?"

Since you have not mentioned the release version, we have validated your query based on version 15.3.0.26. We have created a sample by using your code snippet.

Inorder to increase Rim Width ,please set RadiusFactor Property as 1 if you are using RimThickness Property.

Note: After Volume 3 release, we have made behaviour changes in SfCircularGauge control for Density based issues, ScaleStartOffset and ScaleEndOffset property can be used instead of RimThickness.

Sample Link:

http://www.syncfusion.com/downloads/support/directtrac/general/ze/CircularGauge417974428  

Screenshot:
 



Please get back to us if you have concern. 
Regards,
Sri Gayathri.G  



October 20, 2017 01:28 PM UTC

Thanks Gayathri it helps.



SG Sri Gayathri Gopalakrishnan Syncfusion Team October 23, 2017 09:37 AM UTC

Hi,

Thanks for your response, we are glad that the issue has been resolved and please get back to us if you need any other assistance.

Regards,
Sri Gayathri.G

Loader.
Up arrow icon