Series.TCustomSeries.OnGetPointerStyle
 
 
 


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;




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