Kendo Controls - SCRIPT28:堆栈空间不足

时间:2012-12-27 15:29:20

标签: jquery kendo-ui

我正在测试非常标准的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"
        }
    });
});

1 个答案:

答案 0 :(得分:0)

似乎jquery js文件的版本已经过时了。我下载了最新版本(1.8.3)并且工作正常。