TFastLineSeries.IgnoreNulls
 
 
 

All Units  All Classes  Properties, Methods and Events  

TFastLineSeries.IgnoreNulls
TFastLineSeries

property IgnoreNulls: Boolean;

Unit
Series

Description
Default: True

For speed reasons, FastLine series supports null (empty) values only when IgnoreNulls property is False.

By default all points are displayed (IgnoreNulls is True by default).

To enable FastLine series to hide null points, set IgnoreNulls to False.

Example:

Series1.Clear;
Series1.Add( 123 );
Series1.Add( 456 );
Series1.AddNull( 200 ); // <-- number is optional (default is zero)
Series1.Add( 222 );
Series1.Add( 555 );
Series1.IgnoreNulls := False;





Send us Help Feedback. Copyright 1995-2013 © by Steema Software. All Rights Reserved.