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

I'm trying to make a horizontally oriented ridge plot . Following is the code plotly.__version__ == 5.3.1 # Ridgeline plot ``` base_date = dt.datetime.strptime(start_date,'%Y-%m-%d') fig = go.Figure() for day in...

**Python: 3.9** **Plotly: 2.4.2+** ```python from plotly.subplots import make_subplots import plotly.graph_objects as go fig = make_subplots(rows=1, cols=2, subplot_titles=("Using go.Scattergl()", "Using go.Scatter()")) fig.add_trace( go.Scattergl(x=[1, 2, 3], y=[4, 5, 6], text="This is...

The HTML/js contains UUIDs generated by python's built-in `uuid.uuid4`. By nature, those are unique and totally random. But if you generate documents as part of a pipeline (e.g. via https://dvc.org/...

I have deployed a chart generation service in Heroku. But the chart cannot show the correct text because Heroku is missing specific typeface file. And I cannot copy the required...

Closes #2279 This PR adds the ability to install Plotly with: ``` pip install plotly[pandas] ``` which bundles `pandas` in the install, required by `plotly.express` and: ``` pip install plotly[dev]...

feature
P2
infrastructure

In our contributing docs we have a section that describes how one could use a `plotly.js` bundle to test bundles from the last commits of pull requests or any plotly.js...

How can I change the displayed data subset when using `animation_frame`? `fig.update_layout(sliders=[dict(active=...)])`, shown in the [docs](https://plotly.com/python/sliders/#sliders-in-plotly-express), only changes the value selected on the slider itself, but not the actual data....

Hello, Spike lines and compare data on hover is missing by default in the modebar/toolbar for Plotly 5.0.0. Originally this was a bug report, but it turned out it is...

Is it possible to customize the hoverinfo of boxplots? Instead of showing the x-axis value infront of q1, q3, mean, etc..I want to change the value for the 'x-axis on...

fixes #3274 The list often serves as reference to look for modebar options and v1hovermode was missing.