Plotly.js:初始缩放

时间:2016-04-19 01:10:45

标签: plotly

我有256个数据点。当绘图首次出现时,我希望x轴自动缩放到沿X轴的特定范围。有办法吗?我必须以某种方式打到D3吗?

1 个答案:

答案 0 :(得分:8)

类似的东西:

Plotly.plot('graph', [{
  /* some data trace */
}], {
  xaxis: {
    range: [0, 1]  // to set the xaxis range to 0 to 1
  }
});

plotly.js chart attributes reference中的更多信息。