Hi everyone,
Here's a bit of CSS you can add to an HTML widget to hide the first three columns in the Data Viewer widget should you want to:
<style>
/* Hide first three columns in Data Viewer */
div[data-content-uuid="WIDGET_UUID"] .dataviewer-list th:nth-child(2),
div[data-content-uuid="WIDGET_UUID"] .dataviewer-list th:nth-child(3),
div[data-content-uuid="WIDGET_UUID"] .dataviewer-list th:nth-child(4),
div[data-content-uuid="WIDGET_UUID"] .dataviewer-list td:nth-child(2),
div[data-content-uuid="WIDGET_UUID"] .dataviewer-list td:nth-child(3),
div[data-content-uuid="WIDGET_UUID"] .dataviewer-list td:nth-child(4){
display: none !important;
}
</style>