tcolorgridseries and null vaues

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
seanmurphy
Newbie
Newbie
Posts: 48
Joined: Fri Mar 12, 2004 5:00 am

tcolorgridseries and null vaues

Post by seanmurphy » Fri Feb 27, 2009 11:31 am

teechart pro 8.01

How do I add null data to a colorgrid series, there does not seem to be a .addxyznull() method

thanks
Sean

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Fri Feb 27, 2009 12:06 pm

Hi Sean,

You can either use any of AddNull overrides:

Code: Select all

  Series1.AddNull('yourstring');
  Series1.AddNull(y);
or use AddXYZ setting the colour to clNone:

Code: Select all

  Series1.AddXYZ(x,y,z,'',clNone);
BTW: Notice there's v8.04 available at the client area.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

seanmurphy
Newbie
Newbie
Posts: 48
Joined: Fri Mar 12, 2004 5:00 am

Post by seanmurphy » Fri Feb 27, 2009 2:09 pm

thanks for that

Post Reply