Page 1 of 1

Trouble with small values in the X-Axis

Posted: Mon Jul 10, 2006 2:57 pm
by 9529272
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.

Posted: Mon Jul 10, 2006 3:16 pm
by narcis
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