activating tabs in TeeChart Editor.....

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
glenn
Newbie
Newbie
Posts: 4
Joined: Tue Dec 07, 2004 5:00 am
Contact:

activating tabs in TeeChart Editor.....

Post by glenn » Mon Jul 04, 2005 1:03 am

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.

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Mon Jul 04, 2005 8:52 am

Hi glenn,

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();
		}
At the TeeChart features demo, available at TeeChart program group, you'll find other examples on how to do that for tools, exporting, etc.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

glenn
Newbie
Newbie
Posts: 4
Joined: Tue Dec 07, 2004 5:00 am
Contact:

Post by glenn » Mon Jul 04, 2005 11:57 pm

Hi Narcís,

Thanks for the help, it worked like a charm.
I must look closer at the methods provided.
Certainly overlooked that one.....

Post Reply