Map Series Layout

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

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

Attribute Description
showTreeMapRoot A Boolean that defines whether the root node of the hierarchy is displayed
depth The depth for 3D look in proportion to chart size. Value range is [-1, 16].
fixParentWeight Enables or disables data auto-correction in hierarchical data. Values are Fix or Strict.
hierarchicalView A Boolean that defines 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.

Child 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> The title layout has the following 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>