Hi Niranjan,
In general the commands on the toolbar simply configure the chart - there is no need to create them or to execute them in order to achieve a particular configuration. For example in order to enable mouse zooming you need to execute:
nChartControl1.Controller.Tools.RemoveAllChildren();
nChartControl1.Controller.Tools.AddChild(
new NSelectorTool());
nChartControl1.Controller.Tools.AddChild(new NOffsetTool());
similarly zoom is achived using:nChartControl1.Controller.Tools.RemoveAllChildren();
nChartControl1.Controller.Tools.AddChild(
new NSelectorTool());
nChartControl1.Controller.Tools.AddChild(new NZoomTool());
We would recommend to check out the examples located at All Examples\Interactivity\Tools regarding the usage of different chart tools.