Variable DefaultTableStyleConst

DefaultTableStyle: Readonly<TableStyle> = ...

TableStyle that is used per default. Any supplied table style can be partial and overrides the properties of this style.

rowBorder: false
columnBorder: false
┌──────────────┐
│ Hdr 1  Hdr 2 │
├──────────────┤
│ foo        0 │
│ bar       12 │
│ baz      345 │
└──────────────┘

rowBorder: true
columnBorder: false
┌──────────────┐
│ Hdr 1  Hdr 2 │
╞══════════════╡
│ foo        0 │
├──────────────┤
│ bar       12 │
├──────────────┤
│ baz      345 │
└──────────────┘

rowBorder: false
columnBorder: true
┌───────┬───────┐
│ Hdr 1 │ Hdr 2 │
├───────┼───────┤
│ foo   │     0 │
│ bar   │    12 │
│ baz   │   345 │
└───────┴───────┘

rowBorder: true
columnBorder: true
┌───────┬───────┐
│ Hdr 1 │ Hdr 2 │
╞═══════╪═══════╡
│ foo   │     0 │
├───────┼───────┤
│ bar   │    12 │
├───────┼───────┤
│ baz   │   345 │
└───────┴───────┘

Generated using TypeDoc