A few months ago I created a boxplot chart using a slightly modified version of the method outlined here: http://www.telerik.com/help/wpf/radchart-howto-create-scatter-errorbars-and-boxplot-series.html
I added the following to the chart's XAML:
At the time this worked perfectly and the SelectionChanged event fired and executed as I wanted.
While revisiting this code recently I found that the event no longer fires and I've spent quite some time looking through my own code to see if any of my changes could have caused this but have not been able to get the event firing again. However in the intervening time since this was last known to work I updated my Telerik version to 2013.3.1204.40. Are there any known issues in this version which could cause the SelectionChanged event to stop firing?
Thanks for the help,
Andy.
I added the following to the chart's XAML:
<
telerik:RadCartesianChart.Behaviors
>
<
telerik:ChartPanAndZoomBehavior
ZoomMode
=
"Vertical"
PanMode
=
"Vertical"
/>
<
telerik:ChartSelectionBehavior
DataPointSelectionMode
=
"Single"
/>
<
telerik:ChartSelectionBehavior
SelectionChanged
=
"SelectionChanged"
/>
</
telerik:RadCartesianChart.Behaviors
>
While revisiting this code recently I found that the event no longer fires and I've spent quite some time looking through my own code to see if any of my changes could have caused this but have not been able to get the event firing again. However in the intervening time since this was last known to work I updated my Telerik version to 2013.3.1204.40. Are there any known issues in this version which could cause the SelectionChanged event to stop firing?
Thanks for the help,
Andy.