Bar, Line, and Surface Series Layout

The following table describes the attributes common to the all charts of the Bar, Line, and Surface series (<barSeries>, <lineSeries>, and <surfaceSeries> elements of the chart definition).

Attribute Description
dashedLines A Boolean that defines whether lines are displayed as dashed lines
invertSuperimpositionOrder A Boolean that defines whether the superimposition order of the layers plotted to each data series is inverted. In the case where lines or surfaces are stacked, this setting has no effect.
spacingBetweenGroups The space between groups. Value range is [-1.0, 1.0] with a step of 0.01.
spacingWithinGroups The space within groups. Value range is [-1.0, 1.0] with a step of 0.01.

The following attributes are specific to the Bar3D chart.

Attribute Description
showFloor A Boolean that defines whether a virtual 3D floor is displayed
showFirstEdge A Boolean that defines whether the 3D wall first edge is displayed
showSecondEdge A Boolean that defines whether the 3D wall second edge is displayed

Example

Bar Series
<plotArea>
    <barSeries dashedLines="false" spacingBetweenGroups="0.2" spacingWithinGroups="0.2"/>
    <title visible="true">
        <style>
            <border thickness="None">
                <color alpha="181" rgb="#ff0000"/>
            </border>
            <background>
                <color alpha="115" rgb="#000000"/>
            </background>
            <font size="10" face="Arial" italic="false" bold="true" strikethrough="false" underline="false" rgb="#ff00ff"/>
        </style>
        <layout spacing="0"/>
    </title>
    <background mode="Plain">
        <coloring>
            <color alpha="0" rgb="#000000"/>
        </coloring>
    </background>
    <grids>
        <grid type="Vertical">
            <color alpha="0" rgb="#000000"/>
        </grid>
        <grid type="Horizontal">
            <color alpha="255" rgb="#e7e7e7"/>
        </grid>
    </grids>
</plotArea>