so i have data on x axis that stores hero type, level, star, awakening.
and the y axis holds the different heroes
0,0 is type 1 1,0 level 100. 2,0 5star
0,1 is type 2 1,1 level 50 etc
i want to sort them so level 100 is first on the list
i saw the sort function, and the reverse function to do this
but. this is only sorting a y axis.. like all the levels. so 100 first 99 second. the type/star/awakening all remain in the same order on their own y axis.
so if i have a
1,10,5,0
2,100,10,3
then i end up with
1,100,5,0
2,10,10,3
i need it to sort all colomns based of the y "level" not just sort the levels leaving the other values in the same place.
thanks. hope i explained it well. ill continue to look online for previous examples