You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Customizing hover text for Candlestick objects does not work correctly:
labels = ["<br>".join([f"{i}", f"Time: {candle.Time}", f"Open: {candle.Open}", f"High: {candle.High}", f"Low: {candle.Low}", f"Close: {candle.Close}"]) for i, candle in enumerate(data.itertuples())]
candle = go.Candlestick(x=data.Time,
open=data.Open,
high=data.High,
low=data.Low,
close=data.Close,
hoverinfo="text",
text=labels)
The customized tooltips appear at the right of the chart, not at the cursor position. I tried to change hoverinfo parameters to no avail. Please provide samples in the relevant section.
The text was updated successfully, but these errors were encountered:
Mark531
changed the title
Candlestick hoverinfo does not work
Candlestick hoverinfo does not show the tooltip at the right place
May 27, 2025
Uh oh!
There was an error while loading. Please reload this page.
Customizing hover text for Candlestick objects does not work correctly:
The customized tooltips appear at the right of the chart, not at the cursor position. I tried to change hoverinfo parameters to no avail. Please provide samples in the relevant section.
The text was updated successfully, but these errors were encountered: