SMART datagrid v.1 > Classes > ChartObject

Back  Forward

DataLudi.ChartObject.visible  property

It specifies whether to display chart component. 

Defaults to true.

Getter
function visible(): Boolean
Setter
function setVisible(value: Boolean)
Code -1
    grid.setColumns([{
        type: "chart",
        chart: {
            type: "bar",
            yAxes: {
                visible: false
            }
            ...
        }
    },
    ...
    ]);
See Also
styles
GridChart
Examples
Hello Chart