SMART datagrid v.1 > Classes > GridStyles
削除された行のセルなどでテキストの色として使われるFill客体。
設定の時には下のサンプルみたいにいろんな方法で指定できる。
// solid fill
column.styles().setInactiveColor('#3300ff00');
// solid fill
column.styles().setInactiveColor('#00ff00');
// rgba()
column.styles().setInactiveColor('rgba(255, 254, 253, 0.5)');
// linear bradient
column.styles().setInactiveColor('linear,#ffffff,#f0f0f0,90');
// or
column.setStyles({
inactiveColor: '#ff0000',
color: '#00ff00'
});