如何隐藏plotly.js中X和Y轴的输入?

时间:2017-11-13 11:33:22

标签: plotly

隐藏或禁用在plotly.js中单击轴时出现的输入字段是否可行?

plotly.js line chart

enter image description here

1 个答案:

答案 0 :(得分:0)

据我所知,Plotly中没有设置,但您可以在css设置中隐藏可编辑的div

layout xaxis设置为fixedrange: true会隐藏输入框,但不允许任何缩放。

var trace1 = {
  x: [1, 2, 3, 4], 
  y: [10, 15, 13, 17], 
  type: 'scatter'
};
var trace2 = {
  x: [1, 2, 3, 4], 
  y: [16, 5, 11, 9], 
  type: 'scatter'
};
var data = [trace1, trace2];
Plotly.newPlot('myDiv', data);
div.editable {
  display: none;
}
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<div id="myDiv"></div>