Interface GridStyle

interface GridStyle {
    body?: GridSurfaceStyle;
    colorGrey?: string;
    colorShadow?: string;
    fill?: string;
    filterDarkInvert?: string;
    header?: GridHeaderStyle;
    headerHover?: GridHeaderStyle;
    headerSelect?: GridHeaderStyle;
    headerSelectAll?: GridHeaderStyle;
    headerSelection?: SelectionStyle;
    headerSelectionInactive?: SelectionStyle;
    isDarkMode?: boolean;
    selection?: SelectionStyle;
    selectionInactive?: SelectionStyle;
    selectionRemove?: SelectionStyle;
    strokeFill?: string;
    strokeWidth?: number;
    text?: TextStyle;
}

Hierarchy (view full)

Properties

colorGrey?: string
colorShadow?: string
fill?: string
filterDarkInvert?: string
headerHover?: GridHeaderStyle
headerSelect?: GridHeaderStyle
headerSelectAll?: GridHeaderStyle
headerSelection?: SelectionStyle
headerSelectionInactive?: SelectionStyle
isDarkMode?: boolean

Indicates to the renderers that the colors being rendered are for dark mode.

Remarks

Renderers should invert colors if the colors being used are not specifically for dark mode.

selection?: SelectionStyle
selectionInactive?: SelectionStyle
selectionRemove?: SelectionStyle
strokeFill?: string
strokeWidth?: number
text?: TextStyle