Hi
Currently we display the teechart editor when the user clicks on a chart. We use this code;
Steema.TeeChart.Editor editor1 = new Steema.TeeChart.Editor(myChart);
editor1.ShowModal();
This displays the Teechart editor with the "Chart" tab set to display by default.
Is there a way to have the "Export" tab set to display by default?
Thanks!
From software can I select Export tab in chart editor?
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: From software can I select Export tab in chart editor?
Dave,
%Program Files%\Steema Software\Steema TeeChart for .NET 2014 4.1.2014.02240\Docs\TeeChart for .Net Tutorials.chm
You can use the "editor1.DefaultTab" of the Editor component.
Yes, I think so. Try looking at "Tutorial 16 - TeeChart's Additional palette components" which you can find under:Dave wrote:Is there a way to have the "Export" tab set to display by default?
%Program Files%\Steema Software\Steema TeeChart for .NET 2014 4.1.2014.02240\Docs\TeeChart for .Net Tutorials.chm
You can use the "editor1.DefaultTab" of the Editor component.
Best Regards,
Christopher Ireland / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Re: From software can I select Export tab in chart editor?
Thanks Christopher that works.