Hover template for chart with "base"
Nessuno ha ancora preso questa issue.
- Lingua principale
- Python
- Stelle
- 18.8k
- Fork
- 2.8k
- Merge medio
- 16h 26m
- PR unite (30g)
- 21
Descrizione
Hello!
I am creating a figure which is a Waterfall chart.
In this Waterfall chart, I am using the ‘base’ parameter.
This works perfectly for me, but I noticed a problem with the hovertemplate…
As soon as I have data below my ‘base’, the hover doesn’t work well… It doesn’t work when I am on the bar, I will let you see this in the video.
Here is the code:
import plotly.graph_objects as go
x_values = ['Waiting on union or regulatory problem', 'Up log wireline to depth inside drillstring',
'Drill to depth', 'Slickline run other activities', 'Service Well Control Equipment',
'Trip in to depth', 'Trip out to depth', 'Run in casing to depth', 'Drilling run other activities',
'Rig up to run slickline', 'Run in slickline to depth', 'Make up BHA', 'Circulate to condition hole',
'Waiting on cement to develop strength', 'Circulate to condition drilling fluid',
'Smallest differences combined']
y_values = [-4.83333333, 1.14583333, 1.125, 1.08333333, 0.75, 0.5625, 0.5, -0.45833333, 0.41666667, 0.375, 0.35416667, -0.33333333, 0.33333333, -0.33333333, 0.29166667, 0.875]
fig = go.Figure(
go.Waterfall(
orientation="v",
base=17.5625,
x=x_values,
y=y_values,
customdata=y_values,
hovertemplate=(
"%{x}<br>" + "Initial: %{initial:.2f}<br>" + "Final: %{final:.2f}<br>" + "Delta: %{delta:.2f}<extra></extra>"
),
),
layout={"height": 800}
)
fig.show()
Link bug in forum with the video : https://community.plotly.com/t/hover-template-for-chart-with-base/90887/3
Thanks!
Guida per i contributori
Apri la guida per i contributori
Come iniziare
- Leggi tutta la issue e poi la guida ai contributi del progetto.
- Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
- Fai un fork del repository e lavora su un branch.
- Apri una pull request che faccia riferimento al numero della issue.
Direzione di ricerca
Inizia con l'esempio go.Waterfall fornito, che usa base, y_values e il hovertemplate contenente initial, final e delta. Riproduci il comportamento dell'hover con valori inferiori a base, quindi verifica che passando il cursore su ogni barra vengano visualizzati i valori previsti del template e che il comportamento sia coerente in tutto il grafico.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- python
- Ambito
- data-visualization
- Tipo di issue
- Bug
- Difficoltà
- 3/5
- Tempo stimato
- 1-2 giorni
- Stato di attività
- Ferma
- Chiarezza
- Abbastanza chiara
- Idoneità per principianti
- 45/100