plotly.py icon indicating copy to clipboard operation
plotly.py copied to clipboard

The interactive graphing library for Python :sparkles: This project now includes Plotly Express!

Results 707 plotly.py issues
Sort by recently updated
recently updated
newest added

Plotly 5.17 scatterGL plot flickers when scroll zooming in and out. This happens inside a dash app. I have not tried to replicate it in any other way. ``` fig...

I have a dataframe like this (see [privatebin](https://privatebin.net/?8c149cf805608a5c#3Fk69PSBCBQNePREu1E2VULmHTY3BsZECXUXoJiLmXPP) for full csv, expire in 30 days): ![image](https://github.com/plotly/plotly.py/assets/17119394/3f9001e7-b96c-4743-be11-031659bf284d) Now, I want to display a bar chart with hover data ordered like this...

Using plotly.express (px) to plot a Histogram with barnorm = 'percent' and marginal = 'histogram' produces a plot where the barnorm is ignored and the raw counts are plotted. I...

bug
sev-4

I am creating a histogram plot using plotly express.histogram, like the following: ``` df = pd.DataFrame({ 'month': [5] * 30 + [6] * 30 + [7] * 30, 'value': np.random.randint(0,...

Hi, my question Is simple but I cannot find an answer. I run : ``` import plotly.express as px df = px.data.tips() fig = px.box(df, x="time", y="total_bill") fig.update_layout( hoverlabel=dict( bgcolor="white",...

Want to revive this issue (or bug?), I have seen some old threads about it (https://community.plotly.com/t/plotly-dash-heatmap-customdata/5871), doesn't seem to be specific to the plot type either... where customdata attribute does...

I encounter a bug in VSCode notebook when using a `FigureWidget` for a `go.Image` trace using `source` string instead of `z` attribute (`px.imshow` optimization). The bug is: once you hover...

It appears that the stamen styles (stamen-terrain, stamen-toner, stamen-watercolor) no longer work on mapbox maps. Using one of these styles, just gives a blank map under the data provided to...

This is neither a doc pr nor a code pr, but a packaging PR! Related to #1103, this makes the existing partially-complete type annotations usable for checking projects which import...

feature
P2

Hello, I’m trying to catch on_selection events in a faceted figure. I create a simple faceted figure, and attach an on_selection handler to all traces. As an output, I simply...