我知道如何将注释与绘图区域对齐(使用 xref="paper")。我想将注释放置在整个图的右下角。绝对或相对偏移不起作用,因为绘图区域之外的边距宽度在多个图形之间发生变化,具体取决于其内容。有办法怎么做吗? 非常感谢。
编辑:示例代码
import plotly.express as px
fig = px.scatter(x=[1, 2, 3], y=[1, 2, 3], title="Try panning or zooming!")
fig.add_annotation(text="Absolutely-positioned annotation",
xref="paper", yref="paper",
x=0.3, y=0.3, showarrow=False)
fig.show()