This question is locked. New answers and comments are not allowed.
Hi,
I have to following XAML
This works for binding to to all other values shown but does not bind to the RadialGauge style. On debugging my view model,
the getter GaugeStyle is never called whereas the getter for ScaleStyle is. I just want to confirm that this is a bug.
Regards,
Paul
I have to following XAML
<telerik:RadGauge> <telerik:RadialGauge Style="{Binding GaugeStyle}"> <telerik:RadialScale Min="{Binding ScaleMin}" Max="{Binding ScaleMax}" Style="{Binding ScaleStyle}"> <telerik:IndicatorList> <telerik:Needle IsAnimated="True" Value="{Binding IndicatorNeedleValue}" /> </telerik:IndicatorList> </telerik:RadialScale> </telerik:RadialGauge></telerik:RadGauge>This works for binding to to all other values shown but does not bind to the RadialGauge style. On debugging my view model,
private Style _GaugeStyle;public Style GaugeStyle { get { return _GaugeStyle; } set { _GaugeStyle = value; }}private Style _ScaleStyle;public Style ScaleStyle{ get { return _ScaleStyle; } set { _ScaleStyle = value; }}the getter GaugeStyle is never called whereas the getter for ScaleStyle is. I just want to confirm that this is a bug.
Regards,
Paul