plotly.py
plotly.py copied to clipboard
The interactive graphing library for Python :sparkles: This project now includes Plotly Express!
**Bug Report: Template updatemenus and annotations not transferred to figures** **Description** When defining `updatemenus` and `annotations` in a Plotly template, they are not properly transferred to figures that use the...
**Description**: I'm encountering a bug in Plotly where duplicate column names in a correlation matrix result in missing rows or columns when plotted using `plotly.graph_objects.Heatmap`. The key issue is that...
Minimum Working Example (MWE): ```python import plotly.graph_objects as go from plotly.subplots import make_subplots # Data option1_x = ['A', 'B', 'C'] option1_y1 = [1, 3, 2] option1_y2 = [2, 4, 3]...
The current legend_tracegroupgap implementation is in pixel. Desired behavior: if I have 2 subplots (col=2, row=1) to be able to enable legend_per_subplot = True Default vertical legend on the right...
Updated `plotly` from 5.17 to 6.0.0. In that context I switched from `scattermapbox` to `scattermap` (`maplibre` rendering engine), as recommended. Mapstyle is `carto-positron`. After doing this, maps on city scale...
I think this would be a great addition, as allows further customization in data viewing. For example, in my application I need to display strain and other variables during charging...
The default orientation of the y-axis in the Heatmap graph is, at least to me, unexpected. The 0,0 coordinate of the plot is in the lower left corner. A heatmap...
Hi, I'm proposing a fix to an edge case where conversion from matplotlib to plotly would break when converting a "lines+markers" plot with a legend. The issue happens because go.layout.Shape...
- [x] I have read through the [contributing notes](https://github.com/plotly/plotly.py/blob/main/CONTRIBUTING.md) and understand the structure of the package. In particular, if my PR modifies code of `plotly.graph_objects`, my modifications concern the code...
Hi, This fixes the issue where a matplotlib figure with only bottom and left tick markers would be converted to a plotly figure with markers on all sides. ## Code...