Hi,
Whenever I change my graph type from 2D/3D Bar to 2D/3D Line (or Area), the Y axis is re-based to start at the lowest value in the data set, not 0. Hence at first sight it appears as though the values have dropped to zero.
Is it a way to force the graph to start at zero when the type is Line (or Area)?
Regards,
Liviu
Graph type change
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Liviu,
Sorry but I don't understand which is your exact problem. Could you please send us a simple example project we can run "as-is" to reproduce the problem here?
You can either post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.
Thanks in advance.
Sorry but I don't understand which is your exact problem. Could you please send us a simple example project we can run "as-is" to reproduce the problem here?
You can either post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.
Thanks in advance.
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 |
Hi Narcis,
You might be able to figure out what I mean from the two attachments I've posted on your upload page (DSCallards_Bar_Graph.jpg and DSCallards_Line_Graph.jpg). Both attachments were produced using the same data set, first one using 2D Bar and the second one using 2D Line.
What I'd like to see, is the second graph (2D Line) to start at 0 on the Y axis and not at the lowest value in my data set (i.e. 4.06). How can I achieve that?
Thanks.
Liviu
You might be able to figure out what I mean from the two attachments I've posted on your upload page (DSCallards_Bar_Graph.jpg and DSCallards_Line_Graph.jpg). Both attachments were produced using the same data set, first one using 2D Bar and the second one using 2D Line.
What I'd like to see, is the second graph (2D Line) to start at 0 on the Y axis and not at the lowest value in my data set (i.e. 4.06). How can I achieve that?
Thanks.
Liviu
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Liviu,
Thanks for the information. In that case you can try this:
For further axes information please read Tutorial 4 - Axis Control. You'll find tutorials at TeeChart's program group.
Thanks for the information. In that case you can try this:
Code: Select all
tChart1.Axes.Left.AutomaticMinimum = false;
tChart1.Axes.Left.Minimum = 0;
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 |