AddnullXYZ to TColorseriesgrid
Posted: Tue Dec 18, 2007 9:29 pm
Is it possible to addnull to a Tseriescolorgrid ?
Teechart Pro v8.01 on Delphi 6 Pro
cheers
Sean
Teechart Pro v8.01 on Delphi 6 Pro
cheers
Sean
Steema Software - Customer Support Forums
http://teechart.com/support/
Code: Select all
procedure TForm1.FormCreate(Sender: TObject);
var x,z: Integer;
tmpColor: TColor;
begin
for x:=0 to 10 do
for z:=0 to 10 do
begin
if ((x=5) and (z=5)) then
tmpColor:=clNone
else
tmpColor:=clTeeColor;
Series1.AddXYZ(x,random,z,'',tmpColor);
end;
end;