finalChart.Series["Series1"].ChartType = SeriesChartType.Column;
finalChart.Series["Series1"].XValueMember = mydatasource;
finalChart.Series["Series1"].YValueMembers = mydatasource;
if (SortDropDownList.SelectedItem.Text == "Ascending")
finalChart.DataManipulator.Sort(PointSortOrder.Ascending, "Series1");
else
finalChart.DataManipulator.Sort(PointSortOrder.Descending, "Series1");
我想要做的是显示排序的图表。仅显示未排序的图表。从 SortDropDownList 进行选择后,图表系列没有变化,即不排序。虽然我没有在这里显示,但我已经使用了 selectedChangedEvent。
任何帮助都将是一个很大的帮助。谢谢