IChartLabel.Type

Syntax

Type: ChartLabelType;

Description

The Type property determines label type: simple, callout or index.

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;
End Sub Custom;

After executing the example data label type is displayed as a callout:

See also:

IChartLabel