SMART datagrid v.1 > Classes > GridColumn
Style used in displaying column cells.
If no other settings, it will draw the data cells being included in this column by using this style set. The style changed by calling Setter is immediately reflected in grid.
var column = grid.columnByName('Address');
if (column) {
// Change various style values at once.
column.setStyles({
background: "#ffff00",
fontSize: 20
});
// Can also change individually.
var styles = column.styles();
styles.setBackground("#ffff00");
styles.setFontSize(20);
}