SMART datagrid v.1 > Classes > PlottingSource

Back  Forward

DataLudi.PlottingSource.zindex  property

显示被包含在列系列组的系列的顺序。 

值较大的系列,将会被显示在后。 特别是,当ChartSeriesGroup.stackModeOVERLAPPED时,显示顺序将会变得很重要。 

默认值为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
列系列组