keep the range of xaxis1 when toggling traces
还没有人认领这个 Issue。
评估
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 新手友好度
- 45/100
- Issue 类型
- 缺陷
- 描述清晰度
- 基本清楚
- 活跃度
- 停滞
- 技术栈
- javascript
调研方向
首先运行提供的 Plotly 示例,并在观察重叠的 xaxis1 和 xaxis2 范围时切换轨迹。调查切换轨迹期间的范围更新行为;当 xaxis1 保持其当前范围,而 xaxis2 继续如图所示运行时,即表示完成。
由索引模型根据 Issue 内容生成。
描述
Problem:
The fig has two xaxises, when toggled trace2, the range of xaxis1 was changed.
Feature request:
How to keep the range of xaxis1 like xaxis2 when toggle trace2?
https://github.com/user-attachments/assets/cf3ac904-8ae4-4cfa-9783-193196c327df
Code:
import plotly.graph_objects as go
fig = go.Figure()
x1 = [0, 1, 2, 3, 4, 5]
x2 = [100, 200, 300, 400, 500, 600]
fig.add_trace(
go.Scatter(
x=x1,
y=[7] * 6,
visible=False,
)
)
fig.add_trace(
go.Bar(
x=[0, 1, 2],
y=[1, 2, 3],
)
)
fig.add_trace(
go.Bar(
x=[3, 4, 5],
y=[4, 5, 6],
)
)
# data3
fig.add_trace(
go.Scatter(
x=x2,
y=[8] * 6,
)
)
# create xaxis2
fig.update_layout(
xaxis2={
"anchor": "y",
"side": "top",
"overlaying": "x",
},
)
# Re-assign scatter traces to axes created above
fig.data[3].update(xaxis="x2")
fig.show()
- 主要语言
- JavaScript
- 星标
- 18.3k
- 派生
- 2k
- 平均合并
- 2 天 10 小时
- 30 天内合并 PR
- 30
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
plotly/plotly.js 的其他 Issue
-
chore P3 plotly-internal size: 3 task
难度 2/5 1-3 小时 新手友好度 77/100
-
bug P2 size: 1
难度 2/5 1-3 小时 新手友好度 72/100
-
chore P1 plotly-internal size: 1 task
难度 1/5 1 小时以内 新手友好度 82/100
-
chore P3 plotly-internal size: 1 task
难度 2/5 1-3 小时 新手友好度 65/100
-
bug
难度 2/5 1-3 小时 新手友好度 65/100
相似的 Issue
-
ai-observability bug team/ai-observability
难度 2/5 1-3 小时 新手友好度 78/100
-
难度 2/5 1-3 小时 新手友好度 68/100
AllTheMods/ATM-10-L#19 ·
-
难度 2/5 1-3 小时 新手友好度 78/100
SignalK/n2k-signalk#345 ·
-
难度 2/5 1-3 小时 新手友好度 84/100
-
难度 1/5 1-3 小时 新手友好度 88/100
JuliaPluto/PlutoPlotly.jl#72 ·