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
560
tool tip is not shown for splinearea charts
posted

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?

Parents
  • 28496
    Offline posted

    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>

Reply Children
No Data