IChartAxis.UseJointGap

Syntax

UseJointGap : Boolean;

Description

The UseJointGap property sets bar breaks when using scalable scale for an axis (clustering, distribution).

Comments

If the property is set to True, the breaks are displayed; if the property is set to False, the breaks are not used.

This property is available only for a histogram.

Example

This example assumes that there is the Chart object of the IChart type.

Sub UseJointGap;
Var
    Chart: IChart;
    AxY: IChartAxis;
Begin
    AxY := Chart.AxisY;
    AxY.AutoScale := ChartAutoScaleMode.Clustering;
    AxY.AutoScaleParameter := 2;
    AxY.UseJointGap := True;
End Sub UseJointGap;

After executing the example breaks are used for the chart.

See below examples of chart with breaks (left) and without breaks (right).

See also:

IChartAxis