With standard plots axis labelling works like this:
ListLinePlot[{Range[10], RandomInteger[50, 10]}, AxesLabel -> {"Var1", "Var2"}] But suppose you want to do a similar plot as a multi-axis plot:
ListLinePlot[{Range[10], RandomInteger[50, 10]}, AxesLabel -> {"Var1", "Var2"}, MultiaxisArrangement -> All] This gives you a multiaxis plot, but without any labels:
What's the correct method to label each Y-Axis?


AxesLabelcan be used norFrameLabelworks withMultiaxisArrangement. $\endgroup$