I have created a subplot figure with multi_fig, multi_ax = plt.subplots(2, 2, sharex=True)
I am later trying to set a legend outside the chart area, I have tried multi_fig.legend(labels = energy_data["Fuel"].unique(), bbox_to_anchor=(1,1), loc="upper right")
but the legend still appears overlapped with the sub fig in position [0, 1].
Is it possible to have the legend outside of the subplot?