Hello Support Team,
My data is changing in range from 1e-7 to 1e-4. I would want that values on an axis were displayed without a sign exponent. For example - "1,123" and not "1,123e-4". How to make it ?
Now it is displaying as "1,123e-4" or "0,000123".
Best regards, Rustam.
Axis labels: valueformat ?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Rustam,
You can use something like this:
You can use something like this:
Code: Select all
TChart1.Axis.Left.Labels.ValueFormat = "#,#######0.00000000"
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 |
It not that. because it like "0,000123", I would want that the number 1,23e-5 it was displayed as "1,23", without exponent.narcis wrote:Hi Rustam,
You can use something like this:
Code: Select all
TChart1.Axis.Left.Labels.ValueFormat = "#,#######0.00000000"
It would be necessary so as to display value on an axis in various units of measurements.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Rustam,
Then you will need to use OnGetAxisLabel event and manually parse labels text.
Then you will need to use OnGetAxisLabel event and manually parse labels text.
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 |