SMART datagrid v.1 > Classes > SignalBarCellRenderer

Back  Forward

DataLudi.SignalBarCellRenderer.startRate  property

The height of bar on the left most. 

It specifies by the ratio about the maximum height which has been specified by barRate

Defaults to 0.4.

Getter
function startRate(): Number
Setter
function setStartRate(value: Number)
Code -1
    var columns = [{
        name: "2000",
        fieldName: "2000",
        width: "100",
        renderer: {
            type: "signal",
            maximum: 10,
            barCount: 8,
            startRate: 1,
            endRate: 0.5
        },
        styles: {
            textAlignment: "far",
            shapeColor: "#080"
        }
    },
    ...
    ];
    grid.setColumns(columns);
See Also
endRate
barRate
barGap
barCount
Examples
Signal Bar Cell Renderer