Hi Syncfusion!
I'm currently learning to create charts however I come up with one issue while sorting..
When my chart has 2 series (example below), it only allows me to sort ascending / descending the first series 'Output Labour', it does not let me to sort it by Time Spent (series 2).
Is there a workaround to sort by more than 1 series?
series1.SortPoints = True
series1.SortOrder = ChartSeriesSortingType.Y
series2.SortPoints = True
series2.SortOrder = ChartSeriesSortingType.Y
' Works
ChartControl2.Series(0).SortOrder = ChartSeriesSortingOrder.Ascending
ChartControl2.Series(0).SortOrder = ChartSeriesSortingOrder.Descending
' Does NOT work!
ChartControl2.Series(1).SortOrder = ChartSeriesSortingOrder.Ascending
ChartControl2.Series(1).SortOrder = ChartSeriesSortingOrder.Descending