plotly.py
plotly.py copied to clipboard
The interactive graphing library for Python :sparkles: This project now includes Plotly Express!
## Description I am trying to use the `fillgradient` in a scatter plot with `plotly`. [I copied the documentation code for its use](https://plotly.com/python/filled-area-plots/#gradient-fill), but on code execution, the gradient does...
Thanks for your interest in Plotly.py! Before opening an issue, please search for existing and closed issues :) **Please** accompany bug reports with a reproducible example. Please use the [latest...
Double clicking on one element in the legend does not always isolate the element's corresponding trace. Sometimes all traces are shown, and sometimes no change is made. See the recording...
Hi When I instantiate a dict once with some constant formatting that I want to pass to the "annotation" argument for several calls of .add_vline() (or .add_hline()), all annotations for...
When using facets and setting binary_string to False it's not possible to select a range on the y-axis. It works on the x-axis and also when binary_string is set False....
An animated scattermapbox figure with a legend sometimes shows jitter while using a slider. ```python3 import plotly.graph_objects as go lats = [_*0.02 for _ in range(500)] lons = [0]*500 fig...
From discussion here: https://community.plotly.com/t/re-behavior-of-on-selection-callback-attached-to-multiple-subplots/59824 , **It seems like it could be a bug present on Linux but not on Windows**. I have a project with many subplots in one figure,...
Plotly version: ```bash # ubuntu20.04LTS plotly==5.5.0 ``` when run: ```python import numpy as np import plotly.graph_objects as go x = np.array([2, 0, 2, 4], dtype=np.float64) y = np.array([2, 0, 2,...
Most items coming from questions on the community forum - [x] a proper multicategory bar example based on https://community.plotly.com/t/multicategory-axis-type-example/26392 - [ ] example of shape or annotation covering several subplots...
Varying `marker.line.width` works nicely in `go.Scatter`, you're able to specify a different outline width for each point: _works_ ```python import plotly.graph_objs as go x = [1,2,3] y = [1,2,3] fig...