This question is locked. New answers and comments are not allowed.
Hello,
I have a RadCartesianChart with a CategoricalAxis defined for the Horizontal Axis, and i am styling the PanZoomBar the following way:
The value for MaximumRangeSpan is binded from the View Model and it works as expected, locking the bar to the maximum value.
But now i need to do the same for MinimumRangeSpan and it doesn't work. The value never gets binded and even when i hard code a double value for this property the PanZoomBar doesn't block to the minimum selection expected, and always allows to zoom to the smallest value.
Is it possible to try to achieve this behavior?
PS: I am using Silverlight Q2 2014 binaries.
I have a RadCartesianChart with a CategoricalAxis defined for the Horizontal Axis, and i am styling the PanZoomBar the following way:
<telerik:CategoricalAxis.Resources> <Style TargetType="telerik:PanZoomBar"> <Setter Property="MaximumRangeSpan" Value="{Binding PanZoomBarMaximumRange, Mode=TwoWay}"></Setter> <Setter Property="IsSelectionRangeEnabled" Value="True"></Setter> </Style></telerik:CategoricalAxis.Resources>The value for MaximumRangeSpan is binded from the View Model and it works as expected, locking the bar to the maximum value.
But now i need to do the same for MinimumRangeSpan and it doesn't work. The value never gets binded and even when i hard code a double value for this property the PanZoomBar doesn't block to the minimum selection expected, and always allows to zoom to the smallest value.
Is it possible to try to achieve this behavior?
PS: I am using Silverlight Q2 2014 binaries.