Page 1 of 1

Trouble with small values in the Y-Axis

Posted: Fri May 26, 2006 4:13 pm
by 6926048
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.

Posted: Fri May 26, 2006 4:25 pm
by narcis
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