IChartVolume3DInfo.UseDepth

Syntax

UseDepth: Boolean;

Description

The UseDepth property determines forced use of depth (for histograms and mixed charts).

Comments

If this property is set to True, force depth is used; if this property is set to False, it is not used.

This property is set to False by default.

The property applies to histograms, mixed charts and 3D charts.

Example

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 force depth is applied to series bars.

See also:

IChartVolume3DInfo | IChart.Type | IChart.Volume3DInfo