Hello,
I'm trying to use the Kendo UI Angular chart directive. My situation is that I have web services that return line data (x/y coordinates) in JSON, and I'm trying to figure out a way to bind that data to the chart. I haven't found very much clear documentation on this and was wondering if there is an example or tutorial that I could follow to get set up. I have Angular services that make calls to my API and are currently grabbing the data - I just need a way of binding that to the chart. A sample of the response for one of the lines is pasted below. Thank you in advanced.
[{
"xValue"
:0.0,
"yValue"
:12274.36},
{
"xValue"
:50.0,
"yValue"
:12352.83},
{
"xValue"
:100.0,
"yValue"
:12373.48},
{
"xValue"
:150.0,
"yValue"
:12344.57},
{
"xValue"
:200.0,
"yValue"
:12249.58}]