I am having the following problem. I am playing with Manipulate and I would like to draw a vector overlapping an axis (x-component of a vector), and I would like the vector to be blue. But the axis is in the foreground, therefore I don't see the color. How can I bring the arrow in foreground? Anyone have encountered this? I can post code if it helps.
Asked
Active
Viewed 42 times
1
m_goldberg
- 107,779
- 16
- 103
- 257
Umberto
- 205
- 2
- 5
Method -> {"AxesInFront" -> False}but if you useEpilogthen it will be on top automaticallyPlot[Sin[x], {x, 0, 1}, Epilog -> {Blue, Thickness@.02, Arrow[{{.1, 0}, {.5, 0}}]}]– Kuba May 10 '14 at 10:13Epilogis a second way. But since you've chosenMethodthen I will mark it as duplicate. – Kuba May 10 '14 at 10:38