IChartAxis.MinJointGap

Syntax

MinJointGap: Double;

Description

The MinJointGap property determines 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. This property is relevant only for the values axis when the IChartAxis.UseJointGap property is set to True.

Example

Executing this example requires a form, a button named Button1 located on this form, the ReportBox component and UiReport component used as the 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 this example creates a gap in value axis and chart series:

See also:

IChartAxis