2

我正在测试非常标准的剑道控件,例如,每次单击饼图或任何其他图表时,我都会在浏览器中获得“堆栈空间不足”。还有人得到这个吗?

$(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"
        }
    });
});
4

1 回答 1

0

it seems that the version of the jquery js file was outdated. I downloaded the newest one (1.8.3) and it worked fine.

于 2012-12-27T16:49:52.217 回答