Show only exact x matches in hover with hovermode="x unified"
未关闭
还没有人认领这个 Issue。
feature
P3
- 主要语言
- Python
- 星标
- 18.8k
- 派生
- 2.8k
- 平均合并
- 16 小时 26 分钟
- 30 天内合并 PR
- 21
描述
Currently, if there are two traces a, b with hovermode="x unified", then a value from trace b can be shown in the hoverinfo even when I am hovering on a x coordinate where there is no point in trace b, but only in trace a, see picture, where hovering over point from trace a with x=3 shows point from trace b with x=3.05.
I would like a way to enforce that only points with exactly matching x coordinates are shown in the hover (something like hovermode="x unified exact"?).
Code to generate figure from the screenshot:
fig = go.Figure(
layout=go.Layout(hovermode="x unified"),
data=[
go.Scatter(
x=[1, 3],
y=[1, 1],
name="a",
),
go.Scatter(
x=[1, 3.05],
y=[2, 2],
name="b",
),
],
)
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
从提供的 go.Figure 复现和其 layout 设置 hovermode="x unified" 开始,然后跟踪绘图实现所使用的 hover 匹配行为。完成标准是:受支持的选项或模式只显示 x 坐标完全匹配的 trace,同时在其他情况下保留现有的统一 hover 行为。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- python
- 领域
- data-visualization
- Issue 类型
- 功能
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 活跃
- 描述清晰度
- 基本清楚
- 新手友好度
- 52/100