I'm using the TeeChart component in a stand-alone application in .NET using C#. Is there any way to activate a particular tab (say the print tab)
programatically. Sure the TeeChart component provides a means to show the editor but I'd like to activate a particular tab. Any help would be greatly appreciated.
activating tabs in TeeChart Editor.....
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi glenn,
Yes, this can be done, to activate the print tab you could do something like:
At the TeeChart features demo, available at TeeChart program group, you'll find other examples on how to do that for tools, exporting, etc.
Yes, this can be done, to activate the print tab you could do something like:
Code: Select all
private void button1_Click(object sender, System.EventArgs e)
{
tChart1.Printer.Preview();
}
Best Regards,
Narcís Calvet / 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 |