2017-03-27 110 views
1

我有數據圖表plotly.js:限制個plotly.js的x軸顯示

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

請幫幫我!謝謝!

回答

2

你必須指定你的X軸的範圍。默認情況下,它顯示所有數據。

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

非常感謝。它爲我工作。 :) –