IChartVolume3DInfo.SceneDepthCoef

Syntax

SceneDepthCoef: Double;

Description

The SceneDepthCoef property determines chart depth.

Comments

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

Example

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

Sub Scene;
Var
    Chart : IChart;
Begin
    Chart.DisplayVolume3D := True// transform chart to 3D form
    Chart.Volume3DInfo.SceneDepthCoef := 10;
End Sub Scene;

After executing the example chart depth is changed to the specified value.

See also:

IChartVolume3DInfo | IChart.Volume3DInfo