Version 6 with Borland Builder 4
Posted: Fri Jul 16, 2010 7:28 pm
Would like to how to set up TeeChart so that +/- X and Y values are plotted in four quadrants and if possible axis labels on the 0,0 lines.
Steema Software - Customer Support Forums
http://216.92.101.67/support/
Code: Select all
uses Series;
procedure TForm1.FormCreate(Sender: TObject);
var i: Integer;
Series1: TPointSeries;
begin
Chart1.View3D:=false;
Series1:=Chart1.AddSeries(TPointSeries) as TPointSeries;
for i:=0 to 49 do
Series1.AddXY(i-25,Random(100)-50);
Chart1.Axes.Left.PositionPercent:=50;
Chart1.Axes.Bottom.PositionPercent:=50;
end;