Page 1 of 1

activating tabs in TeeChart Editor.....

Posted: Mon Jul 04, 2005 1:03 am
by 9525185
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.

Posted: Mon Jul 04, 2005 8:52 am
by narcis
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.

Posted: Mon Jul 04, 2005 11:57 pm
by 9525185
Hi NarcĂ­s,

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