限制点在plotly.js的x轴上显示

时间:2017-03-27 03:03:16

标签: plotly

我有带数据的plotly.js图:

TESTER = document.getElementById('tester');

Plotly.plot( TESTER, [
    {
        x: [1, 2, 3, 4, 5],
        y: [1, 2, 4, 8, 16]
    }
]);

示例:codepen

我想限制点在x轴上显示为3点,当使用“PAN”时会看到其他点。

例如: enter image description here

enter image description here

请帮帮我!谢谢!

1 个答案:

答案 0 :(得分:2)

您必须指定Xaxis的范围。默认情况下,它显示所有数据。

Plotly.plot( TESTER, [{
    x: [1, 2, 3, 4, 5],
    y: [1, 2, 4, 8, 16] }], { 
    margin: { t: 0 }, xaxis:{ range:[1,3] } } );