Whenever I add a RadHorizontalGauge to a container element, it only takes up about 85% of the horizontal space. Is there any way of making it take up the full width of the container? I have a gauge in a StackLayout, and I want the gauge to take up the max available width - here is my XAML...
<StackLayout BackgroundColor="#ff0000" Padding="10,10,10,0" Spacing="0" VerticalOptions="Start"> <telerikGauges:RadHorizontalGauge x:Name="profileProgressGauge"> <telerikGauges:RadGaugeBase.Axis> <telerikGauges:GaugeLinearAxis Minimum="0" Maximum="100" Step="5" ShowLabels="False" StrokeThickness="0" /> </telerikGauges:RadGaugeBase.Axis> <telerikGauges:RadGaugeBase.Indicators> <telerikGauges:GaugeBarIndicator Value="100" Fill="#ffffff" Position="End" StartCap="Oval" EndCap="Oval" /> <telerikGauges:GaugeBarIndicator Value="40" Fill="#73d016" Position="End" StartCap="Oval" EndCap="Oval" /> </telerikGauges:RadGaugeBase.Indicators> </telerikGauges:RadHorizontalGauge></StackLayout>
If you look at the first attached picture (the output of the XAML above), the gauge seems to occupy only 85-90% of the available width. If you look at second attached picture, taken from the latest Progress Telerik UI for Xamarin sample app in the AppStore/GooglePlay, you'll see the same thing - the horizontal gauge doesn't appear to take up all the available horizontal space.
Is this a bug?
