Reverse the order of legend
问题 I use the following code to plot the bar graph. Need to present a legend in reverse order. How can I do it? colorsArr = plt.cm.BuPu(np.linspace(0, 0.5, len(C2))) p = numpy.empty(len(C2), dtype=object) plt.figure(figsize=(11,11)) prevBar = 0 for index in range(len(C2)): plt.bar(ind, C2[index], width, bottom=prevBar, color=colorsArr[index], label=C0[index]) prevBar = prevBar + C2[index] # positions of the x-axis ticks (center of the bars as bar labels) tick_pos = [i+(width/2) for i in ind] plt