IVZTreeMap.View3D

Syntax

View3D: Boolean;

Description

The View3D property determines tree map visualization mode.

Comments

Available values:

Example

Executing the example requires a form containing the following components:

executing the example also requires an express report containing a tree map. The express report must be a data source for UiErAnalyzer1.

Sub UserProc;
Var
    EaxAnalyzer: IEaxAnalyzer;
    Treemap: IVZTreeMap;
Begin
    // Get express report
    EaxAnalyzer := UiErAnalyzer1.ErAnalyzer;
    // Get tree map
    TreeMap := EaxAnalyzer.TreeMap.TreeMap;
    // Change tree map visualization mode to 3D
    TreeMap.View3D := True;
    Treemap.RenderMode := VisualizatorTreeMapRenderMode.RM3D;
End Sub UserProc;

After executing the example, tree map visualization mode is changed from 2D to 3D.

See also:

IVZTreeMap