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