SMART datagrid v.1 > Classes > SignalBarCellRenderer

Back  Forward

DataLudi.SignalBarCellRenderer.detailed  property

If it is false, it will be displayed in bar unit, and if it is true, bar inside will also be partially separated and displayed based on the value. 

Defaults to false.

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