SMART datagrid v1.4 > Classes > GridStyles
컬럼 헤더나 Row Indicator에서 셀 위로 마우스가 있는 셀의 배경을 그릴 때 사용되는 Fill 객체.
아래 예제처럼 여러가지 방식으로 지정할 수 있다.
// solid fill
column.styles().setHoveredBackground('#3300ff00');
// solid fill
column.styles().setHoveredBackground('#00ff00');
// rgba
column.styles().setHoveredBackground('rgba(255, 254, 253, 0.5)');
// linear gradient
column.styles().setHoveredBackground('linear,#ffffff,#f0f0f0,90');
// or
column.setStyles({
hoveredBackground: '#ff0000',
hoveredColor: '#00ff00'
});