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 PointerStyle 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;
Submit your feedback about this page.
Copyright 1995-2007 © by Steema Software. All Rights Reserved.