TFastLineSeries.DrawAllPointsStyle

TFastLineSeries.DrawAllPointsStyle
TFastLineSeries

property DrawAllPointsStyle: TDrawAllPointsStyle;

Unit
Series

Description
DrawAllPointsStyle property allows you to choose the method which will be used for displaying repeated points at same horizontal pixel.

daFirst: When the series has several points that share the same X pixel position, but with different Y position, it will only display the first point.
daMinMax: Plots both the minimum and maximum Y that map to each X pixel.

Example :
Series1.DrawAllPoints := False ;
Series1.DrawAllPointsStyle:=daMinMax;