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?
tabs in TeeChart editor.....
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
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
All Features\Welcome !\Exporting\Chart Picture\Adobe PDF export format
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();
}
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 |
Instructions - How to post in this forum |