Data base send X-axis values 1,3,2,4,5 but when assigned to chart values are coming 1,2,3,4,5. How can show same order as table has on x -axis?

Datatable

X Y

1 2000

3 1500

2 -500

4 -2000

Chart

X Y

1 2000

2 -500

3 1500

4 -2000

link|improve this question

Are you explicitly setting the "order by" in your SQL statement? – GrillerGeek Jan 5 '11 at 18:27
Post your code so we can see how you are binding to the datalist. – LordHits Jan 28 '11 at 19:05
feedback

1 Answer

Do not use DataBindXY, instead use DataBindY so that the order of your data is maintained by your X axis.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.