I’m using Asp.net chart controls in order to display charts. I have a datatable which I’m directly binding to the control like this:
Chart1.DataSource = dtChart;
Chart1.DataBind();
Now, I would like to know how I can display a tooltip when mouse is hovered over each data points in the chart.
Thanks in advance.
You can set the tooltip in the Series like so:
This will show the values of the X and Y point when you mouse over it.