Grid's row header (column with index 0) cannot be hidden when used with the molecules demo data set below. Other data sets don't seem to exhibit this behavior.
const df = grok.data.demo.molecules();
const view = grok.shell.addTableView(df);
const col0 = view.grid.columns.byIndex(0);
col0.visible = false;