IAxisArrowTool.SizePercent
IAxisArrowTool
property SizePercent: Integer;
Type Library
TeeChartx
Description
Changes de size of the Arrows of the AxisArrowTool in percent.
Example [Visual Basic]:
With TChart1
.AddSeries scArrow
.Series(0).FillSampleValues (5)
.Tools.Add tcAxisArrow
With .Tools.Items(0).asAxisArrow
.Axis = TChart1.Axis.Bottom
.SizePercent = 50
End With
End With