ListLinePlot[{Style[one, Black], Style[two, Blue],
Style[three, Green], Style[four, Red]},
Frame -> True,
PlotRange -> All,
FrameLabel -> {"x",”y", " Title"},
GridLines -> Automatic,
PlotLegends -> {"one", "two", "three", "four"},
Filling -> {2 -> Axis, 3 -> Axis, 4 -> Axis}]
Produces what I need but the first curve needs to be on a different axis.
Adding MultiaxisArrangement -> {1, {2, 3, 4}} corrects the axis, but breaks FramLable, PlotLegends, Filling, and Style.
Is there a workaround other than reverting to the old ways of making multi axis graphs?