Hello:
I would like to store data in a column in a calcite-table. However I would like to hide the column from the user.
Is there a way to achieve this?
This code does not work:
<calcite-table-header heading='My Column' hidden></calcite-table-header>
This works to hide the column header, but the column still shows data:
<calcite-table-header heading='My Column' style="visibility: hidden;"></calcite-table-header>
TIA