SMART datagrid v.1 > 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'
});