allow aligning hovertext for annotations
还没有人认领这个 Issue。
- 主要语言
- Python
- 星标
- 18.8k
- 派生
- 2.8k
- 平均合并
- 16 小时 26 分钟
- 30 天内合并 PR
- 21
描述
It looks like there is no way to control the text justification for annotation hovertexts. For example:
# Make an background image
f = px.imshow( [[255]*6]*3, origin='lower')
# Add two annotations with hovertext
f.add_annotation( x=1, y=1, text='left', hovertext='Will be left justified<br>*', showarrow=False)
f.add_annotation( x=5, y=1, text='right', hovertext='Will be right justified<br>*', showarrow=False)
# Tighten the plot
f.update_layout( margin={'l':0, 'r':0, 't':0, 'b':0}, coloraxis_showscale=False)
# This will not apply on the annotation hovertext
f.update_layout( hoverlabel_align='left')
# This does not exist and annotation hovertexts default to auto
# f.update_annotations( hoverlabel_align='left')
f.show()
The image hovertexts will be all properly left-justified, but the annotation hovertexts will default to 'auto', with the left one being left-justified, and the right one being right-justified. Am I missing something, or this is an omission in the tunable options? Is there some other way to force left-justification on the annotation hovertexts? I produce a set of tables that way that look atrocious otherwise.
Thanks!
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
从 f.add_annotation 中展示的 annotation API 和 f.update_layout 中 hoverlabel_align 的行为入手,然后追踪 annotation hovertext 选项是如何暴露的。完成的标准是 annotation hovertext 可以接收显式的对齐设置,包括 issue 中描述的左对齐和右对齐示例。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- plotly, python
- 领域
- data-visualization
- Issue 类型
- 功能
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 45/100