Hello Support,
<telerik:RadCartesianChart.Behaviors>
<telerik:ChartTrackBallBehavior ShowIntersectionPoints="True" TrackInfoUpdated="ChartTrackBallBehavior_TrackInfoUpdated" />
<telerik:ChartSelectionBehavior DataPointSelectionMode="Single" SelectionChanged="RadChart1_SelectionChanged" />
</telerik:RadCartesianChart.Behaviors>
<!-- This code does not work, when i click on all of the points on the line, i never have the event triggered -->
<telerik:ScatterLineSeries ItemsSource="{Binding LineProfileDataValues}"
YValueBinding="RedBandOrMonoValue" XValueBinding="PixelNumber" Stroke="Red" Width=".5" TrackBallTemplate="{StaticResource trackBallTemplateR}" IsHitTestVisible="True">
<!-- If i simple change from a LineSeries to a ScatterPointSeries, then the event is triggered and everything works correctly -->
<telerik:ScatterPointSeries ItemsSource="{Binding LineProfileDataValues}"
YValueBinding="RedBandOrMonoValue" XValueBinding="PixelNumber" TrackBallTemplate="{StaticResource trackBallTemplateR}" IsHitTestVisible="True">
<telerik:RadCartesianChart.Behaviors>
<telerik:ChartTrackBallBehavior ShowIntersectionPoints="True" TrackInfoUpdated="ChartTrackBallBehavior_TrackInfoUpdated" />
<telerik:ChartSelectionBehavior DataPointSelectionMode="Single" SelectionChanged="RadChart1_SelectionChanged" />
</telerik:RadCartesianChart.Behaviors>
<!-- This code does not work, when i click on all of the points on the line, i never have the event triggered -->
<telerik:ScatterLineSeries ItemsSource="{Binding LineProfileDataValues}"
YValueBinding="RedBandOrMonoValue" XValueBinding="PixelNumber" Stroke="Red" Width=".5" TrackBallTemplate="{StaticResource trackBallTemplateR}" IsHitTestVisible="True">
<!-- If i simple change from a LineSeries to a ScatterPointSeries, then the event is triggered and everything works correctly -->
<telerik:ScatterPointSeries ItemsSource="{Binding LineProfileDataValues}"
YValueBinding="RedBandOrMonoValue" XValueBinding="PixelNumber" TrackBallTemplate="{StaticResource trackBallTemplateR}" IsHitTestVisible="True">