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
tcolorgridseries and null vaues
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Sean,
You can either use any of AddNull overrides:
or use AddXYZ setting the colour to clNone:
BTW: Notice there's v8.04 available at the client area.
You can either use any of AddNull overrides:
Code: Select all
Series1.AddNull('yourstring');
Series1.AddNull(y);
Code: Select all
Series1.AddXYZ(x,y,z,'',clNone);
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 |