IChartAxis.MinJointGap

Syntax

MinJointGap: Double;

Description

The MinJointGap property determines a start value of breakpoint for an axis and chart series.

Comments

The property value should lie within the range of minimum and maximum scale values. The property is relevant only for the values axis when the IChartAxis.UseJointGap property is set to True.

Example

Executing the example requires a form, a button named Button1 on the form, the ReportBox component and UiReport component used as a data source.

    Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
    Var
        axis: IChartAxis;
        chart: IPrxChart;
    Begin
        chart := (rep.ActiveSheet As IprxTable).TabSheet.Objects.Item(0).Extension As IPrxChart;
        axis := (chart As Ichart).AxisY;
        axis.UseJointGap := True;
        axis.MinJointGap := 5000;
        axis.MaxJointGap := 6000;        
    End Sub Button1OnClick;

Executing the example creates a breakpoint in value axis and chart series:

See also:

IChartAxis