IChartCircleExInfo.GroupName

Syntax

GroupName: String;

Description

The GroupName property determines a name of a merged series group on the primary chart.

Example

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

Sub My;

Var

C: IChart;

CircleEx: IChartCircleExInfo;

Begin

C := (PrxReport.ActiveReport.ActiveSheet.Table.Objects.Item(0).Extension As IChart);

C.Type := ChartType.SecondaryBars;

CircleEx := C.CircleInfoEx;

CircleEx.GroupName := "Customers";

PrxReport.ActiveReport.ActiveSheet.Recalc;

End Sub My;

After executing the example the merged series group on the primary chart is renamed to Clients:

See also:

IChartCircleExInfo