I'm a bit lost with this problem..
I need to represent in the same chart, values from different datasources. (i.e. each serie of chart should map one column of each datasource)
I need this because I'm receiving my data trough webservices and I can't manage or change the source(sql)..
Regards,
2 Answers, 1 is accepted
0
Elian
Telerik team
answered on 17 Nov 2011, 04:58 PM
Hi Gonçalo,
You have two options here:
You can collect all the data in the code-behind in one class and bind the Chart to ObjectDataSource which uses that class.(the easier one)
Or you can collect the data in the code behind and dynamically create the chart series and add them to the chart. (Which is basically the same but will give you some additional control over the data)