Skip to content

TableStyle

type TableStyle = {
name?: | TableStyleName
| null;
showColumnStripes?: boolean;
showFirstColumn?: boolean;
showLastColumn?: boolean;
showRowStripes?: boolean;
};
PropertyTypeDescription
name?| TableStyleName | nullThe 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?booleanWhether column stripe formatting should be applied. Default false
showFirstColumn?booleanWhether the first (leftmost) column in the table should be highlighted. Default false
showLastColumn?booleanWhether the last (rightmost) column in the table should be highlighted. Default false
showRowStripes?booleanWhether row stripe formatting should be applied. Default true