Hello,
in my application I am triing to use SpCircularGauge, where I took your sample code in documentation.
Unfrotunately I am not able to display a correct size. I would excpect that contol will adjust the size based on added elements (headers, MarkerPointer, etc ...). It looks like the control is ignoring that.
This is the code I am using:
```
<Frame Margin="0" Padding="0">
<Label Text="Hello"></Label>
</Frame>
<Frame Margin="0" Padding="0">
<xForms:SfCircularGauge Margin="0" BackgroundColor="BurlyWood">
<xForms:SfCircularGauge.Scales>
<xForms:Scale>
<xForms:Scale.Pointers>
<xForms:MarkerPointer Value="40" Color="Red" MarkerHeight="40" MarkerWidth="40" Offset="1"/>
</xForms:Scale.Pointers>
</xForms:Scale>
</xForms:SfCircularGauge.Scales>
</xForms:SfCircularGauge>
</Frame>
```
My result in Android looks following:

As you can see, the gauge size is too small for the marker and therefore part of it is not displayed.
Thanks for help