TCustomPolarSeries.OnGetPointerStyle
 
 
 

All Units  All Classes  Properties, Methods and Events  

TCustomPolarSeries.OnGetPointerStyle
TCustomPolarSeries

property OnGetPointerStyle: TOnGetPointerStyle;

Unit
TeePolar

Description
Triggered just before drawing each polar or radar point, pointer shapes.

You can use this event to supply different pointer styles to each polar point:

function TForm1.Series1GetPointerStyle(Sender: TChartSeries;
ValueIndex: Integer): TSeriesPointerStyle;
begin
if ValueIndex mod 3 = 0 then result:=psTriangle
else result:=psRectangle;
end;




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