Trouble with small values in the X-Axis

TeeChart for ActiveX, COM and ASP
Post Reply
OptUser
Newbie
Newbie
Posts: 20
Joined: Mon Nov 21, 2005 12:00 am

Trouble with small values in the X-Axis

Post by OptUser » Mon Jul 10, 2006 2:57 pm

We have a problem with the axis when the values are very small.
The vertical 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/TeeChartXAxisProblem.zip

Thank you.

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

Post by Narcís » Mon Jul 10, 2006 3:16 pm

Hi OptUser,

You can try setting a left axis increment according to your data values:

Code: Select all

    TChart1.Import.LoadFromFile "data.tee"
    
    TChart1.Axis.Left.Increment = 0.0000025
or even set it to zero:

Code: Select all

    TChart1.Import.LoadFromFile "data.tee"
    
    TChart1.Axis.Left.Increment = 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
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply