DataLudi Grid v.1 > Classes > GridStyles

Back  Forward

GridStyles.shapeBackground  property

Canvas 그리기 api를 이용해서 직접 그려지는 shape가 포함되는 셀렌더러에서 shpae의 배경색을 그릴 때 사용되는 Fill 객체. 설정 시에는 아래 예제처럼 여러가지 방식으로 지정할 수 있다. 

Getter
function shapeBackground(): Fill
Setter
function setShapeBackground(value: String|Fill)
Code -1
    // Solid Brush
    column.styles().setShapeBackground('#3300ff00');
    // Linear Gradient Brush
    column.styles().setShapeBackground('linear,#ffffff,#f0f0f0,90');
    // rgba()
    column.styles().setShapeBackground('rgba(255, 254, 253, 0.5');
See Also
shapeBorder
Fill
스타일 개요
Examples
Column Styles