This demo demonstrates how to bind the chart to remote json data.
Your DataSource configuration looks OK, so I believe that the issue might be connected with the server response. The most common mistakes are:
Server returns an object - dataSource works only with arrays, so if you data consists of a single records please wrap it inside an array. As an example:
[{"foo": 1, "bar": "baz"}]
The schema.data configuration does not point to the array containing the result. Example:
This data cannot be loaded from the dataSource, please correct the serialization and return a valid Json.
I hope this information will help. Please compare your implementation with the one in the aforementioned demo and check for one of the common mistakes.
Kind regards,
Alexander Valchev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!