Skip zero values in TLineSeries

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Messie
Newbie
Newbie
Posts: 34
Joined: Wed Apr 13, 2005 4:00 am
Location: Goettingen, Germany

Skip zero values in TLineSeries

Post by Messie » Fri Jul 29, 2005 3:17 pm

There was a property to skip drawing zero values. I can' find it now.

Can someone help?

thanks, Messie

Messie
Newbie
Newbie
Posts: 34
Joined: Wed Apr 13, 2005 4:00 am
Location: Goettingen, Germany

Found now, but still need help

Post by Messie » Fri Jul 29, 2005 4:13 pm

Hi,

I wanted the property "IgnoreNulls" which is availabe for the TFastLineseries.

Now I have another problem: My TFastLineSeries is created at runtime and I can't get acces to the property now. With the Chart1.Series[x] access method no setting of this property is possible.
Does anyone knows a way to access this at runtime?

Thanks, Messie

Pep
Site Admin
Site Admin
Posts: 3295
Joined: Fri Nov 14, 2003 5:00 am
Contact:

Post by Pep » Tue Aug 02, 2005 11:39 am

Hi Messie,

yes, you can do :

Code: Select all

(Chart1[0] as TFastLineSeries).IgnoreNulls := true;

Post Reply