Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
100
Add MouseEnter event handler to LineChart
posted

I have a LineChart and currently my marker is done like the following:

 


<!-- Markers Point -->
<DataTemplate DataType="{x:Type igCA:MarkerTemplate}">
     <Ellipse Stroke="{Binding Path=Stroke}" Fill="{Binding Path=Fill}" Width="12" Height="12" />
</DataTemplate>



<igCA:Series.Marker>
      <igCA:Marker UseDataTemplate="True" Foreground="#FF686868" FontFamily="Verdana" FontSize="14" LabelDistance="5"/>
</igCA:Series.Marker>

 

Is there a way to add a Mouse enter event handler so I can place a pop-up label with the given information (Label and Value) of the corresponding point?

 

Thanks all.

Parents Reply Children
No Data