TCustomSeries.OnGetPointerStyle
TCustomSeries
property OnGetPointerStyle: TOnGetPointerStyle;
Unit
Series
Description
This event is triggered when TeeChart Series Points are drawn. It may be used to modify the TSeriesPointerStyle of individual points.
Example:
function TForm1.Series1GetPointerStyle(Sender: TChartSeries;
ValueIndex: Integer): TSeriesPointerStyle;
begin
if ValueIndex mod 2=0 then result:=psRectangle
else result:=psTriangle;
end;