IChartCircleExInfo.Label

Syntax

Label: IChartLabel;

Description

The property is read-only.

The Label property returns parameters for the label of a merged series group. The behavior of this label is similar to that of a label on a pie chart.

Example

Executing the example requires a regular report sheet with a chart on it.

Sub UserProc;
Var
    C: IChart;
    CircleEx: IChartCircleExInfo;
    s: String;
Begin
    C := (PrxReport.ActiveReport.ActiveSheet.Table.Objects.Item(0).Extension As IChart);
    C.Type := ChartType.SecondaryBars;
    CircleEx := C.CircleInfoEx;
    s := C.CircleInfoEx.Label.Text;
    PrxReport.ActiveReport.ActiveSheet.Recalc;
End Sub UserProc;

After executing the example the s variable contains text of the label of the merged group of series.

See also:

IChartCircleExInfo