IChart.Volume3DInfo

Syntax

Volume3DInfo: IChartVolume3DInfo;

Description

The Volume3DInfo property enables a user to adjust parameters of a 3D chart.

Comments

Use the IChartVolume3DInfo interface to work with available parameters.

Example

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

A 3D chart should be used. To transform a chart to this type you need to run the following command:

«Chart.DisplayVolume3D := True;».

Sub VolumeInfo;

Var

Chart: IChart;

Begin

Chart.Volume3DInfo.SceneDepthCoef:= 6;

End Sub VolumeInfo;

After executing the example the depth of the 3D chart is increased sixfold.

See also:

IChart