下面的代码显示了当光标靠近数据点时的工具提示。但是这里重要的是数据点而不是区域。因此,我想将鼠标悬停在该区域上以显示相应的标签。我可以更改“ hoveron = fill”,但这不起作用。光标仍然必须靠近数据点,并且工具提示几乎随机出现在绘图中的某个位置。
import plotly.offline as py
import colorlover as cl
import plotly.graph_objs as go
x = list(df.columns)
traces = []
colors = cl.to_rgb(sns.color_palette("RdBu", n_colors=len(df)))
random.shuffle(colors)
for ndx, color in zip(df.index, colors):
label = '-'.join(ndx)
trace = dict(
x=x,
y=df.T[ndx],
hoverinfo='text',
mode='lines',
line=dict(width=0.5,
color=color),
stackgroup='one',
text = label,
hoveron = 'points'
)
traces.append(trace)
fig = dict(data=traces, layout = {
'hovermode': 'closest',
})
py.plot(fig, filename='stacked-area-plot-hover.html', validate=True, auto_open=True)