IChartExternLegend.RowInterval

Syntax

RowInterval: Double;

Description

The RowInterval property determines the distance between rows of the chart external legend.

Comments

The value is specified in millimeters.

To use the RowInterval property, set the RowIntervalAuto property to False.

Example

Executing the example requires a regular report with a chart and an external legend on the report sheet. A unit is added to the report and the UserProc procedure is called from this unit using the hyperlink. The inspector of unit assemblies must contain links to the Chart, Report, Tab system assemblies.

Sub UserProc;
Var
    Chart: IChartExternLegend;
Begin
    Chart := (PrxReport.ActiveReport.ActiveSheet As IPrxTable).TabSheet.Objects.Item(1As IChartExternLegend;
    Chart.RowIntervalAuto := False;
    Chart.RowInterval := 10;
End Sub UserProc;

After executing the example the distance between rows of the external legend is changed to 10 mm.

See also:

IChartExternLegend