Variable FatOutlineTableStyleConst

FatOutlineTableStyle: Partial<Readonly<TableStyle>> = ...

Use a fat line for the outline around the table and for the border between the header and body.

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