-
-
Notifications
You must be signed in to change notification settings - Fork 73
Flickering scroll bar #801
Comments
I'd like this issue addressed, it is really annoying. The issue is caused by the dash-table inserting a div at the end of the body like this:
the thing here is that this happens when you set up an Interval update for the dash table, and the table is about the height of the window. because of the update, this invisible div is constantly being removed and re-inserted during the update of the table. |
This would indeed be hard to reproduce, but does look like we've introduced a regression in |
I have been experiencing this as well, y axis scrollbar appears and disappears as I hover on some of the columns of the datatable. Any idea how to resolve that? |
@nickmuchi87 what versions of dash and dash-table do you have? Can you make a standalone example that reproduces the issue? |
Hi Alex, example below that replicates the issue, I realised if i set the table width as 99.8% or any other figure which is not 100%, the issue is fixed: versions: dash: 1.19.0 imports
`ccy = ['USD','EUR','GBP','AUD'] ticker_list = ['AAPL','TSLA','MSFT','BHP','APTAU'] reco_list = ['Buy','Sell','Hold','Strong Buy','Buy'] rank_list = [1,2,3,4,5] df_curr = pd.DataFrame({'Currency':[random.choice(ccy) for i in range(1,50)], 'TICKER':[random.choice(ticker_list) for i in range(1,50)], app = JupyterDash(name,external_stylesheets=[dbc.themes.SLATE]) app.layout = html.Div([html.Div(html.H1('RANK FILES',
#Callback that updates the table header name when dropdown value is changed
@app.callback([Output('my_table','data'),Output('my_table','columns')],
@app.callback([Output('my_table_select','data'),Output('my_table_select','columns')],
#run app screenshots of scroll bar appearing and disappearing Thanks |
We have received a report that a
I am unable to reproduce this and I haven't seen this any other examples. If any folks from the community run into this, could you please share a GIF or a video of this behavior? Thank you!
The text was updated successfully, but these errors were encountered: