Hi,
This ScatterLineSeries ToolTip is not working.
<ig:ScatterLineSeries Title="{Binding Path=Channel2Name}" Legend="{Binding ElementName=TitleLegend}" x:Name="Channel1Series" XAxis="{Binding ElementName=XAxisChannel}" YAxis="{Binding ElementName=YAxisChannel}" MarkerType="None" Thickness="2" ItemsSource="{Binding Path=Channel2}" XMemberPath ="Index" YMemberPath ="Value"> <ig:ScatterLineSeries.ToolTip> <TextBlock Text="{Binding Path=Item.Value}" /> </ig:ScatterLineSeries.ToolTip> </ig:ScatterLineSeries> </ig:XamDataChart.Series>
How do I need to add a ToolTip for ScatterLineSeries ?
Hi Nelly,
It's working now. Thanks for the help.
Regards,
Greshan
Hi Kinsly,
I am following up to see if I may be of further assistance or if this case may be closed. Thank you!
Best Regards,
Nelly Tacheva
Infragistics, Inc.
The ToolTips will be rendered if you set the MarkerType to some shape rather than to "None". If you need the markers to be invisible, you may set their Brush and Outline (MarkerBrush and MarkerOutline) to "Transparent", that way the ToolTip will show and the Markers will not.
Hope that helps!