IChartVolume3DInfo.GapDepthCoef

Syntax

GapDepthCoef: Double;

Description

The GapDepthCoef property determines gap depth between data series located at the right angle to the chart depth.

Comments

The property can take values from the range [0.0; 5]. This property is set to 0.0 by default.

The property applies only to 3D charts.

Example

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

Sub GapDepth;

Var

Chart : IChart;

Begin

Chart.DisplayVolume3D := True; // converting the chart into a 3D type chart

Chart.Volume3DInfo.GapDepthCoef := 5;

End Sub GapDepth;

After executing the example the depth of gap between data series is changed to the specified value.

See also:

IChartVolume3DInfo | IChart.Type