0
我正在使用偉圖插件Flot將html頁面中的字符串替換爲圖表。但是,情節本身並沒有顯示出來。jQuery Flot未能顯示圖表數據
佔位符:
<div class="chart" id="example1" style="width:300px; height:150px">2009:12.90,2010:12.80,2011:13.90,2012:14.50</div>
<div class="chart" id="example2" style="width:300px;height:150px">1:2,2:1,3:6,4:3</div>
釷jQuery代碼:
$(".chart").each(function(index, value) {
var id = this.id;
var obj = $("#" + id).html().split(",");
var chartdata = [];
$.each(obj, function(i, val) {
chartdata[i] = "[" + val.replace(":",",") + "]";
console.log(val);
});
var thechart = chartdata.join(",");
console.log(thechart);
var d1 = "[" + thechart + "]";
console.log("#" + id + " -> " + d1);
$.plot($("#" + id), [
{
data: d1,
lines: { show: true, fill: true }
},
]);
});
當我與它的工作實際數據替換D1。我懷疑它與作爲字符串或其他東西呈現的數據有關。雖然沒有得到它的權利。我不想將數據添加到jquery調用中,因爲我們使用了cms,因此用戶可以在編輯頁面時更改圖表數據。