Hi,
I have a SQL DataTable of two integer columns, one represent week-numbers (i.e 201402), and the second represent the actual values (i.e 235).
When I'm trying to show the data by RadChart object it shows the two columns as two bars, for each week-number. like this:
values & week-number as 2 yAxises,
week-number as xAxis.
201402
| 235
| |
| |
201402
What I really want is only one bar (the value from the second column) for each week-number (from the first column):
values as yAxis,
week-number as xAxis.
235
|
|
201402
When I use another datatable, with the first column containing strings, the chart is ok.
So a guess is that I need to block it from binding the first column somehow. tried million things already, none succeeded.
Thank you,
Milky.
I have a SQL DataTable of two integer columns, one represent week-numbers (i.e 201402), and the second represent the actual values (i.e 235).
When I'm trying to show the data by RadChart object it shows the two columns as two bars, for each week-number. like this:
values & week-number as 2 yAxises,
week-number as xAxis.
201402
| 235
| |
| |
201402
What I really want is only one bar (the value from the second column) for each week-number (from the first column):
values as yAxis,
week-number as xAxis.
235
|
|
201402
When I use another datatable, with the first column containing strings, the chart is ok.
So a guess is that I need to block it from binding the first column somehow. tried million things already, none succeeded.
Thank you,
Milky.