我正在使用plotly.js在我的web应用程序中绘制图形。默认情况下,modeBar放置在右上角。有没有办法把它放在最上面的中间?
发布于 2017-07-18 17:50:40
这应该是可行的:
.js-plotly-plot .plotly .modebar {
left: 50%;
transform: translateX(-50%);
}
发布于 2017-07-18 17:58:33
.js-plotly-plot .plotly .modebar{left: 40%}
https://stackoverflow.com/questions/45173726
复制相似问题