I'm testing very standard kendo charts, every time i click on the pie chart or any of the other charts, for example, i'm getting the "out of stack space" in the browser. Anyone else getting this?
        $(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"
                }
            });
        });