IChartAxis.UseJointGap

Syntax

UseJointGap : Boolean;

Description

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

Comments

If the property is set to True, the gaps are displayed. If the property is set to False, the gaps are not used.

This property is available for a bar chart only.

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 gaps are to be used for the chart.

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

See also:

IChartAxis