@jsfkit/types
    Preparing search index...

    Type Alias TableStyle

    Describes which style is used to display this table, and specifies which portions of the table have which styles applied.

    type TableStyle = {
        name?: TableStyleName | null;
        showColumnStripes?: boolean;
        showFirstColumn?: boolean;
        showLastColumn?: boolean;
        showRowStripes?: boolean;
    }
    Index

    Properties

    name?: TableStyleName | null

    The name of the table style to use with this table.

    If the value is null or omitted the table should not be rendered with any special styling (note that this only applies if the style object itself is present).

    null
    
    showColumnStripes?: boolean

    Whether column stripe formatting should be applied.

    false
    
    showFirstColumn?: boolean

    Whether the first (leftmost) column in the table should be highlighted.

    false
    
    showLastColumn?: boolean

    Whether the last (rightmost) column in the table should be highlighted.

    false
    
    showRowStripes?: boolean

    Whether row stripe formatting should be applied.

    true