Page 1 of 1

Zoom limitation ?

Posted: Thu Apr 22, 2004 1:50 pm
by 8576839
Hi,

By default, zoom precision seems to be limitated to 0.01.
For example I can display a scale from 3 to 3.01 but I am not able to go deeper (for example from 3 to 3.0001).

Is there any property to set to do that ?

Thank you,
Verane.

Posted: Thu Apr 22, 2004 3:32 pm
by 8576839
Sorry, forget my message, it was a mistake.

Verane.

Posted: Thu Apr 22, 2004 3:37 pm
by Marjan
Hi.

Perhaps the problem is you forgot to change the axis AxisValuesFormat string to format with sufficient zeros. The following code works fine here:

Code: Select all

  With Chart1.Axes.Bottom do
  begin
    AxisValuesFormat := '0.0000';
    Increment := 0.0001;
    SetMinMax(3.0, 3.001);
  end;