I have added the tooltips for Spline area chart. But when I mouseover on the datapoint in splinearea, the tool tip is not coming.
I think its a bug. Any thoughts to overcome this?
sorry, but it is not possible. you can submit a feature request here: http://devcenter.infragistics.com/protected/requestfeature.aspx
if i set the marker, the tool tip is displayed when the mouse is over the marker only. But I want the tooltip to be displayed, when the mouse is placed on the area/splinearea. How I can do that?
tooltips will be displayed on area charts only if Markers are displayed over the DataPoints:
<igChart:XamWebChart> <igChart:XamWebChart.Series> <igChart:Series ChartType="SplineArea"> <igChart:Series.DataPoints> <igChart:DataPoint Label="Q1" Value="25" ToolTip="Q1: 25" /> <igChart:DataPoint Label="Q2" Value="30" ToolTip="Q2: 30" /> <igChart:DataPoint Label="Q3" Value="45" ToolTip="Q3: 45" /> <igChart:DataPoint Label="Q4" Value="60" ToolTip="Q4: 60" /> </igChart:Series.DataPoints> <igChart:Series.Marker> <igChart:Marker Enabled="True" /> </igChart:Series.Marker> </igChart:Series> </igChart:XamWebChart.Series> </igChart:XamWebChart>