When I input the following simple data into a KendoUI chart, the chart displays the data correctly.
var data = [
{"state":"NY","abc":12312},
{"state":"AZ","abc":12312},
{"state":"CA","abc":12312},
{"state":"VT","abc":12312}
];
It is important to note that the JSON provided above uses STRINGS for the keys.
However, when I use a number as a key, I encounter an "Unexpected number at line number 2156" error in kendo.all.js.
var data = [
{"state":"NY","1":12312},
{"state":"AZ","1":12312},
{"state":"CA","1":12312},
{"state":"VT","1":12312}
];
Any suggestions or assistance on this issue?