SMART datagrid v.1 > Classes > SignalBarCellRenderer

Back  Forward

DataLudi.SignalBarCellRenderer.endRate  property

The height of bar on the right most. 

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

Defaults to 1.0.

Getter
function endRate(): Number
Setter
function setEndRate(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
startRate
barRate
barGap
barCount
Examples
Signal Bar Cell Renderer