Questions tagged [jupyterdash]
23 questions
0
votes
0 answers
Dash Active_cell and page_current conflict
I am trying to link a data table with multiple pages and a graph that displays all the pages of the data table. When I click on the data table, the relevant vertex in the graph is highlighted. When I hover over a vertex, the page_current value in…

jgm_GIS
- 201
- 1
- 13
0
votes
0 answers
Position Plotly Tooltip at XY coord on line with code
Working from slightly modified code found here shown below
from jupyter_dash import JupyterDash
from dash import Dash, dcc, html, Input, Output, no_update
import plotly.express as px
data_x = [1,2,3]
data_y = [1,2,1]
fig = px.line(x=data_x,…

jgm_GIS
- 201
- 1
- 13
0
votes
0 answers
Plotly scatter_mapbox not resizing bubbles size when filter using Dash
I'm trying to create some charts using Dash. The first one is a map chart about crimes in a specific town, using latitude and longitude to put a bubble in the chart, and the size of the bubble is how many times that crime happened in the same…
0
votes
0 answers
Plotly Dash Dropdown Menu Invalid Argument Error
I am trying to create a basic Dash app in a Jupyter notebook with JupyterDash. The dropdown menu is displaying the below error message when I run the script.
Below is the code I am using. I am not sure what I am doing wrong here. Any help would be…

SamLawhead
- 1
- 1
0
votes
0 answers
Plotly Dash - Parallel Selection/Crossfiltering across a Scatterplot and a Timeseries + dropdown/button to switch between datasets shown on plots
I'm trying to create a Dash App that has a scatterplot and timeseries, where the user can select data points on either graph and they highlight on both. This is similar to the "Crossfiltering" example in the Dash documentation…

RandomUser27
- 23
- 2
0
votes
1 answer
plotly graph y-axis with dropdown using dash
I am stuck with creating a responsive graph:
Does somebody have an idea what I did wrong?
# Build App
app = JupyterDash(__name__)
app.layout = html.Div([
html.H1("Index Scatterplot"),
dcc.Graph(id='graph'),
html.Label([
…

Herbert Herbert
- 3
- 2
0
votes
1 answer
Continuous color scale legend not updating with radio button options
I'm making a quick heatmap view to help track some user activities using jupyter-dash and plotly express. My colorscale legend doesn't update unless data is completely depopulated/repopulated (with checkbox component not included in the minimal…

nicklehair
- 21
- 2
0
votes
1 answer
Plotly-Dash: How to show the same selected area of a figure between callbacks?
Consider a plotly figure where you can select polynomial features for a line fit using JupyterDash:
If you select an area and then choose another number for polynomial features, the figure goes from this:
... and back to this again:
So, how can…

vestland
- 55,229
- 37
- 187
- 305