Hi,
I am currently using version 1.1.1879.21176 of Teechart .NET.
Please can you give me an example of how I can use the following Teechart Commander properties: -
Steema.TeeChart.Commander.LabelText
Steema.TeeChart.Commander.LabelValues
Many thanks
Teechart Commander
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi VH1,
You can use:
This is used for showing or hidding the commander label for the rotating, zoom, 3D, etc. status depending on which button is selected. Its default value is true;
and
This is a read-only property to get the commander label text.
There seemed to be a bug with LabelValues, that didn't displayed the label whatever was its value. We have already fixed it in TeeChart for .NET v2.
You can use:
Code: Select all
commander1.LabelValues=false;
and
Code: Select all
MyString = commander1.LabelText;
There seemed to be a bug with LabelValues, that didn't displayed the label whatever was its value. We have already fixed it in TeeChart for .NET v2.
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 |