TCustomSeries.OnGetPointerStyle
 
 
 

All Units  All Classes  Properties, Methods and Events  

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;




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