Hi Alexander,
You need to download a more recent version of the control as the issue with mouse move was fixed in one of the SPs of 2014. Regarding the cursor - when in window mode the control will create a child window inside the hosting control (in order to use hardware acceleration) so when you assign a cursor it will not be automatically applied on this window. To work around the problem you can assign cursor per data point in the following manner:
NChart chart = nChartControl1.Charts[0];
NBarSeries bar = new NBarSeries();
bar.Values.Add(10);
bar.Values.Add(20);
bar.Values.Add(23);
chart.Series.Add(bar);
bar.InteractivityStyles[0] = new NInteractivityStyle(string.Empty, CursorType.Hand);
bar.InteractivityStyles[1] = new NInteractivityStyle(string.Empty, CursorType.Hand);
bar.InteractivityStyles[2] = new NInteractivityStyle(string.Empty, CursorType.Hand);
nChartControl1.Controller.Tools.Add(new NCursorTool());
nChartControl1.Settings.RenderSurface = RenderSurface.Window;
nChartControl1.Refresh();
Let us know if you meet any problems or have any questions.
Best Regards,
Nevron Support Team