In order to enable tooltips you have to add an NTooltipTool instance to the chart controller:
nChartControl1.Controller.Tools.Add(New NTooltipTool())
In order to enable cursor changes you have to add an NCursorTool:
nChartControl1.Controller.Tools.Add(New NCursorTool())
If you want the tooltips to show just the data point index it is not necessary to add an individual interactivity style for each data point. You can use the following code:
point.InteractivityStyle = New NInteractivityStyle("
", CursorType.Hand)
and remove
point.InteractivityStyles.Add(I, New NInteractivityStyle(CStr(I), CursorType.Hand))
from the For loop.
Best Regards,
Nevron Support Team