SMART datagrid v1.4 > Classes > GridStyles

Back  Forward

DataLudi.GridStyles.shapeInactiveColor  property

셀에 표시되는 shape가 비활성화 상태일 때, shape의 배경색을 그릴 때 사용되는 Fill 객체. 

shape는 canvas나 svg api를 이용해서 그려진다. 아래 예제처럼 여러가지 방식으로 지정할 수 있다. 

Getter
function shapeInactiveColor(): Fill
Setter
function setShapeInactiveColor(value: String|Fill)
Code -1
    // solid fill
    column.styles().setShapeInactiveColor('#3300ff00');
    // solid fill
    column.styles().setShapeInactiveColor('#00ff00');
    // rgba()
    column.styles().setShapeInactiveColor('rgba(255, 254, 253, 0.5)');
    // linear gradient
    column.styles().setShapeInactiveColor('linear,#ffffff,#f0f0f0,90');
    // or
    column.setStyles({
        shapeInactiveColor: '#ff0000',
        shapeInactiveBorder: '#00ff00'
    });
See Also
shapeInactiveBorder
shapeColor
shapeBorder
Fill
색 설정
Grid 스타일 개요
Examples
Shape Cell Renderer
컬럼 스타일