Page 1 of 1

tcolorgridseries and null vaues

Posted: Fri Feb 27, 2009 11:31 am
by 9231397
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

Posted: Fri Feb 27, 2009 12:06 pm
by narcis
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.

Posted: Fri Feb 27, 2009 2:09 pm
by 9231397
thanks for that