Is it possible to have more than two vertical axis in Mathematica 2D plots?
This is possible for example in matplotlib (plotting library for Python):
http://matplotlib.org/examples/axes_grid/demo_parasite_axes2.html
EDIT:
the only pitfall of the given answer in the linked question is that the figure cannot be resized, zoomed in/out and axis cannot be edited - when compared to the example that I provided in matplotlib link.
Frame -> True, Axes -> False. This gives two vertical and two horizontal axes, like in the Matlab plot. To label them, you will need to specifyFrameLabel -> etc.instead ofAxesLabel -> etc.. – DumpsterDoofus Oct 07 '14 at 14:49AxesandAxesLabeldocumentation and found no instances of using three different vertical axes (unless I'm missing something). It might be possible to hard-code another axis in, but it might be a bit kludgy. Hopefully there is a built-in way that someone is aware of. – DumpsterDoofus Oct 07 '14 at 15:01optxsymbols and thePlotcommands in the Overlay could readily be Mapped with a bit of tweaking. – bobthechemist Oct 07 '14 at 18:53