Volume3DInfo: IChartVolume3DInfo;
The Volume3DInfo property enables a user to adjust parameters of a 3D chart.
Use the IChartVolume3DInfo interface to work with available parameters.
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: