UseDepth: Boolean;
The UseDepth property determines forced use of depth (for bar and combined charts).
If the property is set to True, depth is to be used, if the property is set to False, it is not to be be used.
By default this property is set to False.
This property can be applied for bar charts, combined charts and 3D charts.
This example assumes that there is the Chart object of the IChart type.
Sub UseDepth;
Var
Chart : IChart;
Begin
Chart.DisplayVolume3D := True; //transform to 3D representation
Chart.Type := ChartType.Bars; //transform to column chart type
Chart.Volume3DInfo.UseDepth := True;
End Sub UseDepth;
After executing the example depth is applied to series bars.
See also: