plotly.py
plotly.py copied to clipboard
The interactive graphing library for Python :sparkles: This project now includes Plotly Express!
Hi, This change adds support for specifying tickvals and ticktext when the values don't follow an arithmetic progression, i.e., they're not evenly spaced. ## Code PR - [x] I have...
## Code PR - [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...
Remove Orca from dependencies, tests, and documentation as part of the switch to Kaleido.
Since I upgraded plotly from 5.24.1 to 6.3.0 my diagrams do not take up the whole width of the parent container anymore. Minimal working example using solara: ```python import solara...
So far the button `Play` only support a single frame duration and a single transition duration for all the steps of the animation. It would be very useful to support...
Two `mplexporter` tests are failing on `main`: ``` FAILED plotly/matplotlylib/mplexporter/tests/test_basic.py::test_legend_dots - AssertionError: assert '3' == '2' FAILED plotly/matplotlylib/mplexporter/tests/test_utils.py::test_linestyle - AssertionError: ``` This is not reflected in the CI because we...
Currently, the graticules provided by `lataxis` and `lonaxis` for geographic plots do not seem to have an option to add corresponding tick labels. For example, [`cartopy` achieves this](https://scitools.org.uk/cartopy/docs/v0.18/matplotlib/gridliner.html) to produce...
Hi, This fixes https://github.com/plotly/plotly.py/issues/5059 preserving axis labels while converting matplotlib plots. Code PR - [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...
Hello, I've encountered a bug when trying to add LaTeX in a plot through annotation or title. Check out the screenshot below: As you can see, I'm using JupyerLab so...
As per the docs, if `z` is passed in with no histfunc, it should be set to `'sum'`: I think this corrects the intended behaviour and puts Histogram2dContour more in...