This question is locked. New answers and comments are not allowed.
Just downloaded the free Gauge, and want to use a Quarter gauge, so copied xaml from QuarterCircleGauges online example,
added in the ResouceDictionary section in UserControl.Resources
But still have wiggly line under the
Any thoughts?
Many Thanks
Paul
Any update on this? Trying to get purchase order for SL controls, and this is part of what's needed for proof-of-purchase!
<telerik:RadGauge x:Name="radGauge" Height="250" Width="250">
<Gauges:RadialGauge x:Name="radialGauge"
Style="{StaticResource RadialGaugeQuarterCircleNWStyle}">
<Gauges:RadialScale x:Name="radialScale"
Style="{StaticResource RadialScaleQuarterCircleNWStyle}">
<Gauges:RadialScale.MajorTick>
<Gauges:MajorTickProperties />
</Gauges:RadialScale.MajorTick>
<Gauges:RadialScale.MiddleTick>
<Gauges:MiddleTickProperties Length="0.05" TickWidth="0.2" />
</Gauges:RadialScale.MiddleTick>
<Gauges:RadialScale.MinorTick>
<Gauges:MinorTickProperties Length="0.03" TickWidth="0.3" />
</Gauges:RadialScale.MinorTick>
<Gauges:RadialScale.Label>
<Gauges:LabelProperties Location="Outside" />
</Gauges:RadialScale.Label>
<Gauges:IndicatorList>
<Gauges:Needle x:Name="needle" IsAnimated="True" Value="65" />
</Gauges:IndicatorList>
</Gauges:RadialScale>
</Gauges:RadialGauge>
</telerik:RadGauge>
added in the ResouceDictionary section in UserControl.Resources
<UserControl.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/Telerik.Windows.Controls.Gauge;component/Themes/Generic.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</UserControl.Resources>
But still have wiggly line under the
RadialGaugeQuarterCircleNWStyle
and RadialScaleQuarterCircleNWStyle
Any thoughts?
Many Thanks
Paul
Any update on this? Trying to get purchase order for SL controls, and this is part of what's needed for proof-of-purchase!