使用plotly.js将modeBar置于顶部中心

时间:2017-07-18 17:44:22

标签: javascript css charts plotly

我正在使用plotly.js在我的网络应用中绘制图表。默认情况下,modeBar位于右上角。有什么方法可以把它放在顶部中心吗?

enter image description here

2 个答案:

答案 0 :(得分:5)

这应该有效:

.js-plotly-plot .plotly .modebar {
    left: 50%;
    transform: translateX(-50%);
}

答案 1 :(得分:2)

.js-plotly-plot .plotly .modebar{left: 40%}