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.
Zoom limitation ?
Hi.
Perhaps the problem is you forgot to change the axis AxisValuesFormat string to format with sufficient zeros. The following code works fine here:
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;
Marjan Slatinek,
http://www.steema.com
http://www.steema.com