IChartVolume3DInfo.SceneDepthCoef

Syntax

SceneDepthCoef: Double;

Description

The SceneDepthCoef property specifies chart depth.

Comments

Use the values from the range [0.2; 20]. By default this property is set to 0.2.

Example

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

Sub Scene;

Var

Chart : IChart;

Begin

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

Chart.Volume3DInfo.SceneDepthCoef := 10;

End Sub Scene;

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

See also:

IChartVolume3DInfo | IChart.Volume3DInfo