0
我正在使用Ext flot在我的應用程序上繪製圖表。我想用ajax請求或按鈕更新圖表數據。我無法更新值。任何人有想法?Ext Flot動態更改圖表值
var graphDataArr = [{ label: 'My Graph', data: myDataArray, color: '#46F252', hoverable: false, clickable: false }];
new Ext.Window({
header : false,
layout : 'anchor',
height : 200,
width : 750,
baseCls : 'ext_panel_header_bar',
items : [ {
xtype : 'flot',
id : 'flotGraph',
cls : 'x-panel-body',
series : graphDataArr,
xaxis : {
min : xMin,
max : xMax
},
yaxis : {
min : yMin,
max : yMax
},
tooltip : false,
anchor : '98% 99%'
} ]
}).show();
'/ *數據陣列格式必須是這樣的*/ dataArrayGraph = [{標號: '我的圖形',數據:dataArray中,顏色: '#46F252',hoverable:假的,可點擊的:假}] ;' – vtokmak