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

## Code PR - [ yes ] 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`,...

Reproducible example: ```python import matplotlib.pyplot as plt from plotly import tools fig, ax = plt.subplots() ax.plot([0, 1], [0, 1], "s-", label="foo") ax.legend() tools.mpl_to_plotly(fig) ``` Works fine without legend or explicit...

@Coding-with-Adam, as requested, this adds the Dash Club snippet that we already have on the Dash docs. Adds it to the ten most popular pages here to get started.

A hyperlink doesn't work because of a little typo on the address.

The matplotlib.collections.Collection object used to have offsets accessible via the get_offset_positions method, which was deprecated in favor of a hidden attribute _offset_position. There was a cold path in mplexported that...

Hi, I try to rename my plot axis using latex titles, they are not rendered in my VS Code jupyter notebook, nor in an exported html using include_mathjax = 'cdn'....

``` import plotly.graph_objects as go from plotly.data import iris # Load the dataset df = iris() fig = go.Figure() fig.add_box(x =df['sepal_length'],name='sepal_length') fig.add_box(x =df['sepal_width'],name='sepal_width') fig.add_box(x=df['petal_length'],name='petal_length') fig.add_box(x=df['petal_width'],name='petal_width') fig.update_layout(template ='gridon') fig.show() ``` ![image](https://user-images.githubusercontent.com/72353341/183399394-74ece878-ab21-440b-b807-9e31c4e71588.png)...

There seems to be no way of rotating the text inside of the sunburst chart. Is there a way of fixing all the text orientation for the labels radially? So...