Hi,
When I have zero for my data, I get a chart with a horizontal axis drawn in the middle. Is there a way to move the horizontal axis and the number zero to the bottom instead of the middle of the chart? I'd like to have the origin (with number zero) at the bottom left corner.
Thanks.
Thuy
zero data and the horizontal axis
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Thuy,
The only solution I can think of is manually setting axes min and max values manually:
You can set them to automatic when you populate your series:
The only solution I can think of is manually setting axes min and max values manually:
Code: Select all
TChart1.Axis.Left.SetMinMax 0, 0
TChart1.Axis.Bottom.SetMinMax 0, 0
Code: Select all
TChart1.Axis.Left.Automatic = True
TChart1.Axis.Bottom.Automatic = True
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 |