CellStyle interface

CellStyle interface prevents passing unwanted CSS properties that could break down grid rendering.

Definition

interface CellStyle {
    readonly color?: string;
    readonly background?: string;
    readonly overflow?: string;
    readonly paddingLeft?: string;
}

Properties

Property nameTypeProperty description
color?stringCSS color property
background?stringCSS background property
overflow?stringCSS overflow property
paddingLeft?stringCSS padding-left property