SMART datagrid v.1 > Classes > GridStyles
Fill object which is used when draw the background of selected cell in Column Header or Row Indicator.
It can be specified in different ways as the example below.
// solid fill
column.styles().setSelectedBackground('#3300ff00');
// solid fill
column.styles().setSelectedBackground('#00ff00');
// solid fill
column.styles().setSelectedBackground('#0f0');
// rgba()
column.styles().setSelectedBackground('rgba(255, 254, 253, 0.5)');
// linear gradient
column.styles().setSelectedBackground('linear,#ffffff,#f0f0f0,90');
// or
column.setStyles({
selectedBackground: '#00ff00',
selectedColor: '0f0'
});