I have a 2D bar chart on a web page which has presorted data from a DataSet. My DataSet has the data sorted descending byt the chart always shows it as ascending. Is there and explicit way to set the bar display to sort by highest value? What could be causing this to display in the reverse order.
TIA
Thanks for that. I was hoping to avoid the DataView approach but will go with it for now.
this is a "legacy compatibility" issue where the control's behavior does not make much sense, but we have chosen to preserve it, to avoid breaking existing applications which rely on this quirk.
the best workaround is to just create a DataView and change the sort on that column, then set the chart's DataSource to that DataView.