2
我正在測試非常標準的kendo控件,每次我點擊餅圖或任何其他圖表時,例如,我得到「堆棧空間不足」在瀏覽器中。其他人得到這個?Kendo Controls - SCRIPT28:堆棧空間不足
$(document).ready(function() {
$("#piechart").kendoChart({
dataSource: ds_array
seriesDefaults: {
type: "pie",
labels: {
visible: true
}
},
title: {
text: "Monthly Revenue per Location"
},
legend: {
position: "bottom"
},
series: [{
field: "revenue",
categoryField: "location"
}],
tooltip: {
visible: true,
format: "N0"
}
});
});
會很容易張貼JSBin或JSFiddle重現問題的示例代碼?你已經包含'kendoChart',但是我們沒有'DataSource',只是爲了確保它不與你的數據相關。 – OnaBai
我試過這[jsfiddle](http://jsfiddle.net/OnaBai/WQ7WQ/2/),它的工作原理(IE9) – OnaBai