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.