我正在测试非常标准的kendo控件,每次我点击饼图或任何其他图表,例如,我在浏览器中获得“堆栈空间”。其他人得到这个?
$(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"
}
});
});
答案 0 :(得分:0)
似乎jquery js文件的版本已经过时了。我下载了最新版本(1.8.3)并且工作正常。