How can I add arrows for axes of frame?
This works well if there is no frame but it doesn't work when I added frame.
Plot[Sin[x], {x, 0, 10}, PlotRange -> {{0, 10}, {0, 1.2}},
AxesStyle -> Arrowheads[0.07]]
Adding frame:
Plot[Sin[x], {x, 0, 10}, Frame -> {{True, False}, {True, False}},
PlotRange -> {{0, 10}, {0, 1.2}}, AxesStyle -> Arrowheads[0.07]]



PlotRange -> {{-1.2, 10}, {-1.05, 1}}andAxesStyle -> {{Arrowheads[0.03], Dashing[0.003], Black}, {Arrowheads[0.03], Dashing[0.003], Black}}works fine for me. – E. Chan-López Jun 29 '22 at 02:48EpilogorShowGraphics. – cvgmt Jun 29 '22 at 03:07Plot[Sin[x], {x, 0, 10}, Frame -> {{True, False}, {True, False}}, PlotRange -> {{-0.01, 10}, {-0.01, 1}} , AxesStyle -> {{Arrowheads[0.03], Thickness[0.005], Black}, {Arrowheads[0.03], Thickness[0.005], Black}}]– hana Jun 29 '22 at 03:37