IChartLabel.Cap

Syntax

Cap: ChartLineCapType;

Description

The Cap property determines a type of label line cap.

Example

This example assumes that there is the Label object of the IChartLabel type.

Sub Custom;
Var
    Label : IChartLabel;
Begin
    Label.Type := 1 As ChartLabelType;
    Label.Cap := 1 As ChartLineCapType;
End Sub Custom;

After executing the example a label line will be ended with an arrow with the slope angle of 30 degrees:

See also:

IChartLabel