例如,每次单击饼图或其他任何图表时,我都在测试非常标准的剑道控件,例如,在浏览器中出现“堆栈空间不足”的情况。有人得到这个吗?
$(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"
}
});
});
最佳答案
看来js js文件的版本已过时。我下载了最新的(1.8.3),它工作正常。
关于jquery - Kendo Controls-SCRIPT28:堆栈空间不足,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14057071/