Trouble with small values in the Y-Axis

TeeChart for ActiveX, COM and ASP
Post Reply
OptUser
Newbie
Newbie
Posts: 2
Joined: Tue Nov 12, 2002 5:00 am

Trouble with small values in the Y-Axis

Post by OptUser » Fri May 26, 2006 4:13 pm

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.

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Fri May 26, 2006 4:25 pm

Hi Gustavo,

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
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply