Zoom limitation ?

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Verane
Newbie
Newbie
Posts: 23
Joined: Thu Jan 09, 2003 5:00 am

Zoom limitation ?

Post by Verane » Thu Apr 22, 2004 1:50 pm

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.

Verane
Newbie
Newbie
Posts: 23
Joined: Thu Jan 09, 2003 5:00 am

Post by Verane » Thu Apr 22, 2004 3:32 pm

Sorry, forget my message, it was a mistake.

Verane.

Marjan
Site Admin
Site Admin
Posts: 745
Joined: Fri Nov 07, 2003 5:00 am
Location: Slovenia
Contact:

Post by Marjan » Thu Apr 22, 2004 3:37 pm

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;
Marjan Slatinek,
http://www.steema.com

Post Reply