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 version `5.20.0`. I am creating subplots with seconary y-axes. When I add the `name` attribute to a figure that includes a Latex string, the x-axis coordinates are incrementally shifted...

bug
sev-3

Our docs for using Plotly in Jupyter are quite out of date: https://plotly.com/python/ipython-notebook-tutorial/ ```python import chart_studio.plotly as py import plotly.graph_objects as go data = [go.Bar(x=df.School, y=df.Gap)] py.iplot(data, filename='jupyter-basic_bar') ``` Is...

documentation
p1

![image](https://github.com/plotly/plotly.py/assets/26293621/0d422a21-60de-42a9-b22e-2607383e624f) From the above image, I use the Mt. Bruno's _z_data_ for both _z axis_ and _surfacecolor_. The surface graph is correct, but the _hover text_ of _surfacecolor_ is wrong....

bug
sev-3

The "Getting Started" page has a "JupyterLab Support" support section which recommends using pip or conda to install the `jupyterlab` and `ipywidgets` packages only. Further down it mentions that for...

# Metadata OS: Ubuntu 23 Python version: 3.11.6 Browser: Google Chrome # What I'm trying to do I'm new to plotly. I'm trying to use the following code to generate...

I created spider plots using plotly. The labels are shown properly when visualizing the image but during write_image the labels are cut off. ``` import plotly.express as px import pandas...

Hello, While making a radar chart using code from the pIotly documentation **Relevant Code:** fig = px.line_polar(df, r='max-age', theta='category', line_close=True) fig.update_traces(fill='toself') I got the error: **AttributeError**: 'DataFrame' object has no...

I'm forwarding an issue with Plotly legends being cut off while using Quarto Dashboards on Chrome. This issue does not occur when using notebooks. ![image](https://github.com/plotly/plotly.py/assets/22156552/bb86c0be-6375-49f8-b674-cf64e85e5728) https://github.com/quarto-dev/quarto-cli/issues/8612 Similar issues in the...

yes. this is a feature request. Why isn't **update_zaxis** implemented? I want to run `fig.update_zaxes(type="log")` but, I can't cause it doesn't exist. why?

px.imshow(tmp.apply(log1p), height=1000) When I run this code a heatmap is generated. When I zoom by pressing the mouse and then moving it horizontally or vertically, I expect to be able...