Point Series Layout

The following table describes the attributes common to all charts of the Point series (<pointSeries>).

Attribute Type or Value Description
dashedLines Boolean Specifies whether lines are displayed as dashed lines
invertSuperimpositionOrder Boolean Specifies 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.

The following attributes are specific to the Bubble and PolarBubble charts.

Attribute Type or Value Description
scale integer The ratio between the plot area size and the biggest bubble diameter. Value range is [2, 10].
scalingMode Proportional|Perceptual The scaling mode

Example

<plotArea>
    <pointSeries dashedLines="false" invertSuperimpositionOrder="false" scale="5" scalingMode="Perceptual"/>  
    <background mode="Striped"> 
        <coloring lightingAdjustment="0.9"> 
            <color alpha="110" rgb="#ffffce"/> 
        </coloring>  
        <coloring lightingAdjustment="0.9"> 
            <color alpha="115" rgb="#ceffff"/> 
        </coloring> 
    </background>  
    <grids> 
        <grid type="Vertical"> 
            <color alpha="0" rgb="#000000"/> 
        </grid>  
        <grid type="Horizontal"> 
            <color alpha="255" rgb="#e7e7e7"/> 
        </grid> 
    </grids> 
</plotArea>