go.Table creates an unsightly and non-removable scroll bar when plotting on another figure.
未关闭
还没有人认领这个 Issue。
bug
P3
- 主要语言
- Python
- 星标
- 18.8k
- 派生
- 2.8k
- 平均合并
- 16 小时 26 分钟
- 30 天内合并 PR
- 21
描述
When adding a small go.Table trace to a go.Figure object, the renderer creates a scrollbar which cannot be removed or hidden. This scrollbar is of low opacity, but is nonetheless noticable and ruins the professionalism of a graph upon which it is drawn. This is particularly apparent on dark backgrounds, and makes it impractical to place a go.Table in, for example, the upper left corner of a figure for displaying of additional information. Reproducible example and screenshot are provided.
import plotly.express as px
import plotly.graph_objects as go
# Load example dataset
df = px.data.iris()
# Create scatter plot
fig = px.scatter(df, x="sepal_width", y="sepal_length", color="species")
# Set plot background color
fig.update_layout(
plot_bgcolor="rgb(40, 40, 40)",
paper_bgcolor="rgb(40, 40, 40)",
)
# Create table trace
table_trace = go.Table(
header=dict(
values=["Species", "Sepal Width", "Sepal Length"],
fill_color="rgba(0,0,0,0)",
align="left",
),
cells=dict(
values=[
df.species[:5],
df.sepal_width[:5],
df.sepal_length[:5],
],
fill_color="rgba(0,0,0,0)",
align="left",
),
)
# Add table trace to the top left third of the plot area
fig.add_trace(
table_trace
)
fig.update_traces(
selector=dict(type='table'),
domain=dict(x=[0., 0.3], y=[0.8, 1])
)
# Show plot
fig.show()

贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
首先运行 plotly.py 中提供的 Python 复现代码,并检查 renderer 如何处理放置在另一个 figure 内的 go.Table trace。将结果与截图进行比较,然后验证表格能够占据指定的 domain,且不会显示可见的、不需要的滚动条。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- python
- 领域
- data-visualization
- Issue 类型
- 缺陷
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100