Setting the minimum Y value
Setting the minimum Y value
I want to programatically set the minimum Y value at 0, but leave the maximum as automatic. Is there a way to use "SetMinMax"?
Hi.
No, not by using SetMinMax method. But you can use the following code:
No, not by using SetMinMax method. But you can use the following code:
Code: Select all
With Chart1.Axes.Left do
begin
AutomaticMaximum := True;
AutomaticMinimum := False;
Minimum := 0.0;
end;
Marjan Slatinek,
http://www.steema.com
http://www.steema.com