Im trying to run this particular example Image Annotations | Dash for Python Documentation | Plotly, but i’m running into some issues about the call back being trigger. I can get the image of the cat to display, and then I can draw on the cat but I can’t seem to get the characteristics of the shapes to output on my app.
app = dash.Dash(name)
layout = html.Div(
[
html.H4(
“Drag and draw annotations - use the modebar to pick a different drawing tool”
),
dcc.Graph(id=“graph-pic”, figure=fig, config=config),
dcc.Markdown(“Characteristics of shapes”),
html.Pre(id=“annotations-data-pre”),
]
)
Hi @vily, has your problem been solved? I just noticed that you wrote mode=inline in the running function, which seems to be the usage of Jupyter Dash.
Hi Stu, thanks for checking in on me. Ive figured out that it had to do with the multi app page my team was running. so now that I have my app separated it works flawlessly!