SMART datagrid v.1 > Classes > GridStyles
Fill object which is used mainly when draw cell background.
You can specify in different ways as the example below.
// solid fill
column.styles().setBackground('#3300ff00');
// solid fill
column.styles().setBackground('#00ff00');
// rgba
column.styles().setBackground('rgba(255, 254, 253, 0.5)');
// linear gradient
column.styles().setBackground('linear,#ffffff,#f0f0f0,90');
// or
column.setStyels({
background: '#ff0000'
color: '#0f0f0f'
});