SMART datagrid v.1 > Classes > PlottingSource

Back  Forward

DataLudi.PlottingSource.zindex  property

The order of displaying series contained in Column Series Group

The series of which value is greater will be displayed later. In particular, when ChartSeriesGroup.stackMode is OVERLAPPED, the display order will become important. 

Defaults to 0.

Getter
function zindex(): Integer
Setter
function setZindex(value: Integer)
Code -1
    var chart = {
        series: [{
            name: 'series01'
            zindex: 0
        }, {
            name: 'series02'
            zindex: 1
        }]
    };
See Also
ChartSeriesGroup
Examples
Column Series Group