Waterfall Series Layout

<waterfallSeries>
    <line>
        <color>

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

Attribute Type or Value Description
dashedLines Boolean Specifies whether lines are displayed as dashed lines
referenceLine Boolean The reference line
spacingBetweenItems double The space between groups. Value range is [-1.000 , 1.000], with a step of 0.01.

<line> thickness is defined via the width attribute with a range of [1, 7] and the color by using a <color> child element.

Example

<plotArea> 
    <waterfallSeries dashedLines="false" referenceLine="true" spacingBetweenItems="0.46"> 
        <line width="7"> 
            <color alpha="255" rgb="#ff00ff"/> 
        </line> 
    </waterfallSeries>  
    <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>