I have a Slider control bound (TwoWay) to the Zoom.Width property of a RadCartesianChart control. When I zoom in and out with the scrollwheel on my mouse, the Slider automatically changes (as it should). But when I try to use the slider to zoom thechart in and out, nothing happens. The slider won't move. Is there something I am missing?
<
Slider
Name
=
"Slider"
Grid.Column
=
"0"
Margin
=
"2"
Orientation
=
"Vertical"
Minimum
=
"1"
Maximum
=
"100"
Value
=
"{Binding ElementName=Chart, Path=Zoom.Width, Mode=TwoWay}"
/>
<
telerik:RadCartesianChart
Name
=
"Chart"
Grid.Column
=
"1"
Palette
=
"{Binding ChartPalette}"
HorizontalZoomRangeStart
=
"{Binding HorizontalZoomRangeStart, Mode=TwoWay}"
HorizontalZoomRangeEnd
=
"{Binding HorizontalZoomRangeEnd, Mode=TwoWay}"
>
...
</
telerik:RadCartesianChart
>