TableStyle
type TableStyle = { name?: | TableStyleName | null; showColumnStripes?: boolean; showFirstColumn?: boolean; showLastColumn?: boolean; showRowStripes?: boolean;};Properties
Section titled “Properties”| Property | Type | Description |
|---|---|---|
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). Default null |
showColumnStripes? | boolean | Whether column stripe formatting should be applied. Default false |
showFirstColumn? | boolean | Whether the first (leftmost) column in the table should be highlighted. Default false |
showLastColumn? | boolean | Whether the last (rightmost) column in the table should be highlighted. Default false |
showRowStripes? | boolean | Whether row stripe formatting should be applied. Default true |