Map Series Layout

<mapSeries>
    <zoneTitle>
        <font>
        <alignment>
        <layout>

The following table describes the attributes specific to the TreeMap chart definition.

Attribute Type or Value Description
showTreeMapRoot Boolean Specifies whether the root node of the hierarchy is displayed
depth integer The depth for 3D look in proportion to chart size. Value range is [-1, 16].
fixParentWeight Fix|Strict Enables or disables data auto-correction in hierarchical data
hierarchicalView Boolean Specifies whether zones are displayed in a hierarchical view

The <zoneTitle> element has the visible Boolean attribute that defines whether the title of the zone should be displayed in the chart.

The following table shows the <zoneTitle> children elements.

Element Description
<font> The font properties of the zone title (size, face, italic, bold, strikethrough, underline, and RGB color)
<alignment> The text alignment (horizontal, vertical, and text policy). The text policy can be Wrap, NoWrap or Truncate.
<layout> Attributes:
  • orientation (Auto|VerticalLettering)
  • spacing, whose value is in unit and the metric range is [0, 1500]

Example

<plotArea>
    <mapSeries showTreeMapRoot="true" depth="-1" fixParentWeight="Fix" hierarchicalView="true">
        <zoneTitle visible="true">
            <font size="8" face="Arial" italic="false" bold="true" strikethrough="false" underline="false" rgb="#ffffff"/>
            <alignment horizontal="Center" vertical="Center" textPolicy="Truncate"/>
            <layout orientation="Auto" spacing="0.417"/>
        </zoneTitle>
    </mapSeries>
</plotArea>