how can i set the legend of the TeeChart.EToolClass.tcDataTable?
i can't find any method to set this property.
about TeeChart.EToolClass.tcDataTable
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi w6p2,
You can do something like this:
You can do something like this:
Code: Select all
TChart1.Tools.Items(0).asDataTable.Legend.Show
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 |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi w6p2,
Ok, in that case you need to do this:
Ok, in that case you need to do this:
Code: Select all
axTChart1.Tools.Add(TeeChart.EToolClass.tcDataTable);
axTChart1.Tools.get_Items(0).asDataTable.Legend.Show();
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 |