python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
I've created a scatter plot with plotly/dash in python and I would like to be able to filter the table next to it by clicking at certain scatter point
app = Dash(__name__)
colors = {
'background': '#ededed',
'text': '#0b1710'
}
fig = px.scatter(df, x="AverageTime", y="Machine",
size="Jobs", colo...
Pat
Votes: 0
Answers: 0
How to Show only boundaries (no fill) of a shapefile in python plotly express?
I have a shapefile of areas/polygons and I'm trying to show that in a choropleth_mapbox in plotly express. What I want to show is only the boundaries/borders. i.e. the fill colour is transparent!
I've...
Mit
Votes: 0
Answers: 1
How do I made a Scatterpolar subplot with multiple traces using plotly
Here is my code.
fig = make_subplots(rows=3, cols=1,specs=[[{'type': 'polar'}],[{'type': 'polar'}],[{'type': 'polar'}],[{'type': 'polar'}]])
fig.add_trace(go.Scatterpolar(
r = [df_wy['Successfu...
Dgao
Votes: 0
Answers: 1
How to show custom symbol in scatter plot in dash?
How can I show a custom symbol from an image in a scatter plot instead of the following symbols that are provided in dash ?
Here we can use only limited symbol in a graph like this.
I have searche...
Sam
Votes: 0
Answers: 1