SMART datagrid v1.4 > Classes > GridStyles

Back  Forward

DataLudi.GridStyles.background  property

주로 셀 배경을 그릴 때 사용되는 Fill 객체. 

아래 예제처럼 여러가지 방식으로 지정할 수 있다. 

Getter
function background(): Fill
Setter
function setBackground(value: String|Fill)
Code -1
    // 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'
    });
See Also
color
Grid 스타일 개요
색 설정
Fill
Examples
컬럼 스타일
동적 스타일