Using a data field that starts with a number prevents the chart from rendering. Numbers can be used within the field but apparently not at the very beginning.
Is there a workaround for this?
This is an example:
var stats = [
{ 1result1: 30, result2: 20, date: new Date("2011/12/20") },
{ 1result1: 50, result2: 20, date: new Date("2011/12/21") },
{ 1result1: 30, result2: 20, date: new Date("2012/01/05") }
];
Change 1result1 to result1 and everything works fine.
http://dojo.telerik.com/aMIjE