BorderPen: IGxPen;
The BorderPen property determines parameters for the border line of a merged series group.
The example requires a regular report sheet with a chart on it.
Sub My;
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 My;
After executing the example the merged group has dotted red outline:
See also: