I have this JSON:
[{ Name: "A", Data: [1, 2, 3]}, { Name: "B", Data: [3, 4, 1]}]
Is there a way to tell the Line Chart that the name field is "Name" and field is "Data"? I have tried Series.Field and Series.CategoryField and it doesn't work.
If you try the dojo JS page from the demo and just change "name" to "Name" and "data" to "Data", it will break. Setting the field value in the seriesDefault will not work. Is the lowercase value hard coded for line charts because for others like pie charts, it works just fine.
Thanks.