IChartVolume3DInfo.GapDepthCoef

Syntax

GapDepthCoef: Double;

Description

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

Comments

Use values from the range [0.0; 5]. Default property value is 0.0.

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