Hi Kevin,
All commands in the manager can be accomplished with public chart API. There is no documentation on that but we can send you complete source code of all commands as reference (by e-mail of course as it will take too much space in the forum).
Best Regards,Nevron Support Team
Bob
Thanks - are there similar commands for all the other toolbar options? Are they listed together somewhere in the documentation?
Thanks
Kevin
All this command does is to call the ShowDialog method of the image exporter:
chartControl.ImageExporter.ShowDialog();which you can also call directly.
Best regards,Bob
For example, I want to add a button to a form which saves or brings up the export dialog, without using the NChartCommandBarsManager. How do I acheive this? I got to
NChartCommander commander = new NChartCommander(); commander.ChartControl = nChartControl; commander.Commands[ChartCommand.Save].
but there is no Execute method?