IChartCircleExInfo.BorderPen

Syntax

BorderPen: IGxPen;

Description

The BorderPen property determines parameters for the border line of a merged series group.

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"));
    BPen.Width := 0.5;
    BPen.DashStyle := GxDashStyle.Dash;
    CircleEx.BorderPen := BPen;
    PrxReport.ActiveReport.ActiveSheet.Recalc;
End Sub UserProc;

After executing the example the merged group has dotted red outline:

See also:

IChartCircleExInfo