SMART datagrid v1.4 > Classes > GridStyles
주로 셀 배경을 그릴 때 사용되는 Fill 객체.
아래 예제처럼 여러가지 방식으로 지정할 수 있다.
// 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'
});