IChartCircleExInfo.ConnectionLinePen

Syntax

ConnectionLinePen: IGxPen;

Description

The ConnectionLinePen property determines parameters for a connecting line between the primary and the secondary charts.

NOTE. To disable displaying connecting line, set this property to Null.

Example

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

Sub UserProc;
Var
    C: IChart;
    CircleEx: IChartCircleExInfo;
    BPen: IGxPen;
Begin
    C := (PrxReport.ActiveReport.ActiveSheet.Table.Objects.Item(0).Extension As IChart);
    C.Type := ChartType.SecondaryBars;
    CircleEx := C.CircleInfoEx;
    BPen := New GxPen.CreateSolid(GxColor.FromName("Red"),0.5);
    CircleEx.ConnectionLinePen := BPen;
    PrxReport.ActiveReport.ActiveSheet.Recalc;
End Sub UserProc;

After executing the example the connecting line becomes red:

See also:

IChartCircleExInfo