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

In the code example below (using the `scattergl`) when the cursor is rolled over the bubble, the hover tooltip does not appear until the cursor is close to the center...

The issue : https://github.com/plotly/plotly.py/issues/3422?fbclid=IwAR36EeUjuHOhj67He36bMZtGYFILPxhQAWki8QJOMbNggXQBOwxFg1_yvKs is fixed We added a line in the contributing.md because we had troubles to install the environment we are a group a student and it's our...

Thanks for having detailed troubleshooting docs for Jupyterlab issues, however I'm unable to use the `plotly_mimetype` renderer (blank plot) in a fresh Jupyterlab (3.0.5) conda environment having followed the [troubleshooting](https://plotly.com/python/troubleshooting/#jupyterlab-problems)...

## Code PR - [X] I have read through the [contributing notes](https://github.com/plotly/plotly.py/blob/master/contributing.md) and understand the structure of the package. In particular, if my PR modifies code of `plotly.graph_objects`, my modifications...

Reported in https://community.plotly.com/t/is-there-a-way-to-display-the-label-of-categories-in-px-pie/48069

bug

This causes ordering issues like this: ```python import plotly.express as px import pandas as pd df = pd.DataFrame(dict( x=['a','b','c','d'], y=[1,2,3,4], z=['p','q','p','q'] )) px.bar(df, x="x", y="y", color="z") ``` ![newplot (1)](https://user-images.githubusercontent.com/203523/124765009-91444b00-df03-11eb-9693-63a76ed48368.png)

bug

Hello, I would like to use range with go.Bar and datetime. From the docs https://plotly.com/python/reference/layout/yaxis/#layout-yaxis-range I should provide range with start and end in str. ``` range=[str(datetime.time(hour=0)), str(datetime.time(hour=10))], ``` But...

## Fixing #3490 issue ---- Deleted for loop and changed indentation as requested on issue. - [X] I have read through the [contributing notes](https://github.com/plotly/plotly.py/blob/master/contributing.md) and understand the structure of the...

In the `_Quiver` class definition (more precisely within the body of one of its methods) there is a useless line [https://github.com/plotly/plotly.py/blob/master/packages/python/plotly/plotly/figure_factory/_quiver.py#L257](https://github.com/plotly/plotly.py/blob/master/packages/python/plotly/plotly/figure_factory/_quiver.py#L257) which just leads to repeating the calculations of the...