When I use colorField: "Color" with named colors such as "Red", "Green" or "Yellow" in the data for a column chart the following error is thrown:
0x800a01b6 - JavaScript runtime error: Object doesn't support property or method 'charAt'.
The color names work as expected in a donut chart.
I fixed this in the resolveColor function by adding the line
value = new String(value);
just after setting the default. In my case the color was passed from JSON data. The kendo.DataViz version is 2013.2.716.
0x800a01b6 - JavaScript runtime error: Object doesn't support property or method 'charAt'.
The color names work as expected in a donut chart.
I fixed this in the resolveColor function by adding the line
value = new String(value);
just after setting the default. In my case the color was passed from JSON data. The kendo.DataViz version is 2013.2.716.