I try the following code to put it as a second axis in a 2-y plot as overlay but it behaves differently in Mathematica 9.0.1 and 10.3 (Numbered labels are missing in MA 10.3)
ListLinePlot[
Accumulate[RandomReal[{0, 100}, {100}]],
PlotStyle -> Red,
ImagePadding -> 25,
Axes -> False,
Frame -> {False, False, False, True},
FrameTicks -> {None, None, None, All},
FrameStyle -> {Automatic, Automatic, Automatic, Red}
]
in 9.0.1
in 10.3
Why this happens and how can I avoid this behavior.


FrameTicks -> {{None, All}, {None, None}}, and this is the documented syntax, both in V9 and V10.3 – Kuba Jan 14 '16 at 13:20