Replace fit_columns with autosize_mode

fit_columns was deprecated in bokeh/2.2
This commit is contained in:
usov_i 2021-03-12 11:57:50 +01:00
parent 526821e073
commit d312c99f96
3 changed files with 3 additions and 3 deletions

View File

@ -310,7 +310,7 @@ def create():
], ],
width=310, # +60 because of the index column width=310, # +60 because of the index column
height=350, height=350,
fit_columns=False, autosize_mode="none",
editable=True, editable=True,
) )

View File

@ -402,7 +402,7 @@ def create():
], ],
width=410, # +60 because of the index column width=410, # +60 because of the index column
editable=True, editable=True,
fit_columns=False, autosize_mode="none",
) )
def scan_table_source_callback(_attr, _old, _new): def scan_table_source_callback(_attr, _old, _new):

View File

@ -137,7 +137,7 @@ def create():
], ],
height=300, height=300,
width=700, width=700,
fit_columns=False, autosize_mode="none",
index_position=None, index_position=None,
) )