We have a problem with the axis when the values are very small.
The horizontal guides and the step values are not shown so you can not tell what is the magnitude of the values shown in the graph.
I have exported the graph data to show the problem. Here is a link to the example project: http://www.optience.com/Files/TeeChart_Axis_Problem.zip
Thank you.
Gustavo.
Trouble with small values in the Y-Axis
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Gustavo,
You can solve that setting a low left axis increment doing something like this:
You can solve that setting a low left axis increment doing something like this:
Code: Select all
Private Sub Form_Load()
TChart1.Import.LoadFromFile "data.tee"
TChart1.Axis.Left.Increment = 0
End Sub
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 |