Interface IStyleColumn

interface IStyleColumn {
    color: string;
    description: string;
    fixed: boolean;
    frozen: boolean;
    groupRenderer: string;
    renderer: string;
    summary: string;
    summaryAsHTML?: boolean | IStyleHTMLWrapper;
    summaryRenderer: string;
    visible: boolean;
    width: number;
}

Properties

color: string

color of this column

Deprecated

not used anymore

description: string

column description

fixed: boolean

whether the column can be removed or not

Default

false
frozen: boolean

frozen column

Default

isSupportType
groupRenderer: string

default group renderer to use

renderer: string

default renderer to use

summary: string

column summary line (subtitle)

summaryAsHTML?: boolean | IStyleHTMLWrapper

whether to render the description as HTML (unsafe) or a custom function to convert a column to its summary label in HTML

Default

false
summaryRenderer: string

default summary renderer to use

visible: boolean

is this column visible by default

Default

true
width: number

initial width of the column

Default

100 or 200 for strings