ConnectionLinePen: IGxPen;
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.
Executing 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"),0.5);
CircleEx.ConnectionLinePen := BPen;
PrxReport.ActiveReport.ActiveSheet.Recalc;
End Sub My;
After executing the example the connecting line becomes red:
See also: