or
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"
}
});
});
var productTransport = new kendo.data.RemoteTransport({
read: {
url: "http://localhost:1822/api/products",
dataType: 'jsonp',
type: 'GET'
}
});
var datasource = new kendo.data.DataSource({
transport: productTransport
});
$("#MyListView").kendoMobileListView({
dataSource: datasource,
template: kendo.template($("#listviewHeadersTemplate").html())
});