IChart.Volume3DInfo

Syntax

Volume3DInfo: IChartVolume3DInfo;

Description

The Volume3DInfo property enables the user to determine 3D chart parameters.

Comments

Use the IChartVolume3DInfo interface to work with available parameters.

Example

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

The chart must be a 3D chart. To transform a chart into this type, execute the 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