Setting the minimum Y value
Posted: Thu Nov 30, 2006 2:00 am
I want to programatically set the minimum Y value at 0, but leave the maximum as automatic. Is there a way to use "SetMinMax"?
Steema Software - Customer Support Forums
http://216.92.101.67/support/
Code: Select all
With Chart1.Axes.Left do
begin
AutomaticMaximum := True;
AutomaticMinimum := False;
Minimum := 0.0;
end;