Plot[Sin[x], {x, 0, 10}, Ticks -> {{{4, "Here"}}, {-1, 1}}]

x1 = Range[0, 10, 0.01];
y1 = Sin[x1];
ListLinePlot[Thread[{x1, y1}], Ticks -> {{{4, "Here"}}, Automatic}]

(* How to make this work? *)
ListLinePlot[Thread[{x1, y1}], Ticks -> {{{4, "Here"}}, Automatic}
, Mesh -> Full, Frame -> True]
When I have Frame -> True, how can I make Ticks work like the first plot?
FrameTicks. – Yves Klett Dec 09 '14 at 20:13Frame -> True, the axis ticks are (incorrectly?) no longer drawn andTicksspecification is ignored. – Oleksandr R. Dec 09 '14 at 20:16