[BUG]: marker.colorbar.thicknessmode='pixels' collapses scatter-matrix layout after Plotly.restyle, while initial render is normal
@LeonxLJX 已经在做这个了。
开始于 2026年8月31日。
- 主要语言
- Python
- 星标
- 18.8k
- 派生
- 2.8k
- 平均合并
- 16 小时 26 分钟
- 30 天内合并 PR
- 21
描述
Description
When initializing a Plotly scatter-matrix figure with a splom trace whose marker
colorbar has marker.colorbar.thicknessmode='pixels', the initial render displays
normally: the scatter-matrix panels remain visible and the colorbar stays narrow.
However, if the same base figure is rendered first and the same property value is
then applied dynamically through Plotly.restyle, the layout collapses. The
scatter-matrix panels are squeezed into a very narrow strip on the left, while the
colorbar gradient occupies most of the figure canvas.
The setting is accepted by plotly.py and emitted as a valid trace property, so this
appears to be a Plotly.restyle/update-time layout calculation issue for splom
marker colorbars rather than an invalid Python-side property assignment.
Screenshots/Video
Steps to reproduce
- Install the screenshot dependencies if needed:
pip install plotly pandas playwright && playwright install chromium. - Run this script. It saves two screenshots in the current directory:
plot1.png: Python-side initialization sets
marker.colorbar.thicknessmode='pixels'before the first render. This renders
normally.plot2.png: the same base figure renders first, then JavaScript applies the
same value withPlotly.restyle. This shows the collapsed layout.
- Compare the two generated screenshots.
import plotly
import plotly.express as px
import plotly.io as pio
import time
from playwright.sync_api import sync_playwright
print(f"Plotly version: {plotly.__version__}")
def make_fig():
df = px.data.iris()
fig = px.scatter_matrix(
df,
dimensions=["sepal_length", "sepal_width", "petal_length", "petal_width"],
color="species",
)
fig.update_layout(
xaxis={"matches": "y"},
xaxis2={"matches": "y2"},
xaxis3={"matches": "y3"},
xaxis4={"matches": "y4"},
height=900,
width=750,
dragmode="select",
selections=[
dict(x0=3, x1=4, xref="x2", y0=8, y1=6, yref="y"),
dict(x0=5, x1=1, xref="x3", y0=5, y1=4, yref="y"),
],
)
return fig
fig = make_fig()
# Screenshot 1 / plot1.png: set the value in Python before the first render.
fig.data[1].marker.colorbar.thicknessmode = "pixels"
assert fig.data[1].type == "splom"
assert fig.data[1].marker.colorbar.thicknessmode == "pixels"
print(fig.data[1].marker.colorbar.to_plotly_json())
html1 = pio.to_html(fig, full_html=True, include_plotlyjs="cdn")
# Screenshot 2 / plot2.png: render first, then apply the same value with JS.
fig.data[1].marker.colorbar.thicknessmode = None
html2 = pio.to_html(fig, full_html=True, include_plotlyjs="cdn")
restyle_script = """
<script>
window.addEventListener("DOMContentLoaded", () => {
var plotEl = document.getElementsByClassName("plotly-graph-div")[0];
setTimeout(function() {
Plotly.restyle(plotEl, {"marker.colorbar.thicknessmode": "pixels"}, [1]);
}, 1000);
});
</script>
"""
html2 = html2.replace("</body>", restyle_script + "\n</body>")
with sync_playwright() as p:
browser = p.chromium.launch(
headless=True,
args=["--no-sandbox", "--disable-dev-shm-usage", "--disable-gpu"],
)
page = browser.new_page(viewport={"width": 1200, "height": 800})
page.set_content(html1)
time.sleep(1.5)
page.screenshot(path="plot1.png")
page.set_content(html2)
time.sleep(2.0)
page.screenshot(path="plot2.png")
browser.close()
print("Saved plot1.png and plot2.png")
Notes
Add info here that doesn't fit in the other sections.
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
评估
这个 Issue 还没有评估数据。