Is it possible to addnull to a Tseriescolorgrid ?
Teechart Pro v8.01 on Delphi 6 Pro
cheers
Sean
AddnullXYZ to TColorseriesgrid
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Sean,
Yes, this is the same as setting a transparent cell, for example:
Yes, this is the same as setting a transparent cell, for example:
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;
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |