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:

tabs in TeeChart editor.....

Post by glenn » Thu Jun 30, 2005 1:30 am

Is there a way to enable the print or export tab in the TeeChart editor programatically so that when the edit dialog is displayed the desired tab is
shown selected?

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

Post by Narcís » Thu Jun 30, 2005 11:28 am

Hi Glenn,

You could associate the dialog you want to a button as can be seen in the features demo examples in italics and the code below. You'll find this demo at the TeeChart program group.

All Features\Welcome !\Printing\Print Export dialog

Code: Select all

		private void button1_Click(object sender, System.EventArgs e)
		{
      tChart1.Printer.Preview();
		}
All Features\Welcome !\Exporting\Chart Picture\Adobe PDF export format

Code: Select all

		private void button2_Click(object sender, System.EventArgs e)
		{
			tChart1.Export.ShowExportDialog(tChart1.Export.Image.PNG);
		}
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

Post Reply