Search code examples
pythondataframedatatablescrollbarbokeh

Why does a vertical scroll bar appear when I edit a datatable in bokeh?


I have a datatable

DataTable(columns=columns, editable=True, selectable=True, autosize_mode='fit_columns', visible=False, height_policy='fit', index_position=None, width=60, margin=(5,5,5,0)).

Even when it only has a few rows and everything is visible, when I try to edit the (only) column, a horizontal and vertical scroll bar appear. How can I get read of both of them, especially the vertical one?


Solution

  • I probably cheated, but when I put non-editable columns next to the editable column then no scroll bars appear.