SMART datagrid v.1 > Classes > GridStyles

Back  Forward

DataLudi.GridStyles.shapeSelectedBorder  property

Stroke object which is used when draw the border of shape which is displayed in cell when the cell is selected. 

The shape is drawn by using canvas or svg api. It can be specified in different ways as the example below. 

Getter
function shapeSelectedBorder(): Stroke
Setter
function setShapeSelectedBorder(value: String|Stroke)
Code -1
    column.styles().setShapeSelectedBorder('#30000000,1');
    // If specify as null, it will not draw the border.
    column.styles().setShapeSelectedBorder(null);
    // Remove the existing setting value and download from the top styles list.
    column.styles().clearValue('shapeSelectedBorder');
See Also
shapeSelectedColor
shapeBorder
Stroke
Colors Setting
Grid Styles Overview
Examples
Shape Cell Renderer
Column Styles
Column Dynamic Styles