This question is locked. New answers and comments are not allowed.
Hi,
I am using the 2011 Q2 version.
Here's a simplified xaml code taken from my solution:
As you can see I am trying to bind the XTickProperties's Location property. I am also using a converter here.
The problem is that nothing happens when the property in my ViewModel is changed. What's really weird is that
I use Bindings with Converters on properties of other gauge objects (not shown in the code snippet) such as the Size of the gauge and they work. Moreover, I put a breakpoint in the Convert method of my converter and it is never reached. Please note that I have successfully done this binding before "programatically".
I went over this a few times thinking I had a done a stupid mistake somewhere, but before I waste any more time on it I would like
to confirm with someone that the particular Binding that I'm trying to do is not defective.
Thank you
I am using the 2011 Q2 version.
Here's a simplified xaml code taken from my solution:
<telerik:RadialGauge
<telerik:RadialScale>
<telerik:RadialScale.MajorTick>
<telerik:MajorTickProperties
Location="{Binding Path=MajorTicksLocation, Converter={StaticResource LocationConverter}}" />
</telerik:RadialScale.MajorTick>
<telerik:RadialScale.MiddleTick>
<telerik:MiddleTickProperties
Location="{Binding Path=MiddleTicksLocation, Converter={StaticResource LocationConverter}}"/>
</telerik:RadialScale.MiddleTick>
<telerik:RadialScale.MinorTick>
<telerik:MinorTickProperties
Location="{Binding Path=MinorTicksLocation, Converter={StaticResource LocationConverter}}"/>
</telerik:RadialScale.MinorTick>
</telerik:RadialScale>
</telerik:RadialGauge>As you can see I am trying to bind the XTickProperties's Location property. I am also using a converter here.
The problem is that nothing happens when the property in my ViewModel is changed. What's really weird is that
I use Bindings with Converters on properties of other gauge objects (not shown in the code snippet) such as the Size of the gauge and they work. Moreover, I put a breakpoint in the Convert method of my converter and it is never reached. Please note that I have successfully done this binding before "programatically".
I went over this a few times thinking I had a done a stupid mistake somewhere, but before I waste any more time on it I would like
to confirm with someone that the particular Binding that I'm trying to do is not defective.
Thank you