Using System.Web.UI.DataVisualization.Charting, I've got data I want to represent as a Bar chart with the first item at the series displaying at the top of the chart, rather than the bottom. E.g. for a series with labels {"A", "B", "C"}, the bar for C will display at the top, while I would want A to be the top bar. This ordering makes sense for numerical data, but in some cases less sense for categorical data. Is there any property or something I can set, or do I need to reverse the order of the data?

link|improve this question

50% accept rate
feedback

1 Answer

You might try something like this after you've bound the data (but before the chart is rendered):

Chart1.Series["Series1"].Sort(PointSortOrder.Ascending, "X");

This will sort Series1 by its X-axis value.

Scott Mitchell has a post about Sorting and Filtering data in the Chart control here.

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.