Interface GridHeaderStyle

interface GridHeaderStyle {
    edgeStrokeFill?: string;
    edgeStrokeWidth?: number;
    fill?: string;
    isDarkMode?: boolean;
    strokeFill?: string;
    strokeFillShadow?: string;
    strokeWidth?: number;
    text?: TextStyle;
}

Hierarchy (view full)

Properties

edgeStrokeFill?: string
edgeStrokeWidth?: number
fill?: string
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.

strokeFill?: string
strokeFillShadow?: string
strokeWidth?: number
text?: TextStyle