Tobs
October 18, 2021, 7:29am
3
I am encountering this issue as well while using Plotly (5.3.1) with Dash (2.0.0). I checked all the data points that I supply to the graph, and they are all float
values, i.e. should all be valid. So I have no clue how to debug this other than joining the above users.
There are other reports of this issue:
Hi everybody!
I faced an inconsistent error while updating dcc.Graph with px.scatter object via callback.
It happens right after I run my app and push the button triggering the dcc.Graph update so that it is obviously connected to scatter plot initialization. But the error occurs randomly, sometimes my app works regularly.
Once I face the error, the app goes OK then.
It really seems to be similar to this case:
My callback code…
@app.callback(
Output('Scatter_plot', 'figure'),
Outp…
Hey everyone,
I’m having a hard time determining the source of a callback error as it only occurs a small percentage of times during app initialization. The error can occur for any of my graphs but I’ve shared the relevant code for the simplest callback below.
import dash
import dash_html_components as html
import pandas as pd
import dash_core_components as dcc
import dash_html_components as html
import dash_bootstrap_components as dbc
from dash.dependencies import Input, Output, State
from da…