2
我可以在創建時在flot上繪製分段,方法是將其添加到選項中。動態更改flot中的標記
markings: [
{ xaxis: { from: 150, to: 200 }, color: "#ff8888" },
{ xaxis: { from: 500, to: 750 }, color: "#ff8888" }
]
現在我想刪除這些標記並通過調用函數添加新的標記。我已經嘗試了以下,但它還沒有工作。我想我不是以正確的方式訪問網格。它在選項中,但不知道如何去實現它。我也不知道如何去除舊的標記。
CustomPlot.prototype.setRibbons = function setRibbons(x1, x2) {
alert("ok"); \\this works
this.plot.getOptions().grid.markings.axis.from = x1;
this.plot.getOptions().grid.markings.axis.to = x2;
this.plot.getOptions().grid.markings.color = "#ff8888";
this.plot.setupGrid();
this.plot.draw();
你有沒有[檢查你的控制檯](http://stackoverflow.com/documentation/javascript/185/hello-world/714/using-console-log)的錯誤?在你的Plunker中,你似乎沒有在'grid.markings'爲'null'之前創建標記。 –