Arrowhead Directive for FrameStyle?
- To: mathgroup at smc.vnet.net
- Subject: [mg113504] Arrowhead Directive for FrameStyle?
- From: at <atorgovitsky at gmail.com>
- Date: Sun, 31 Oct 2010 02:09:44 -0500 (EST)
How do you get arrowheads on an axes when using Frames within a Plot?
For example if I do:
test = Plot[{curve0[x]}, {x, 0, 1},
Frame -> {True, True, False, False},
FrameStyle -> {Directive[Blue], None, None, None}]
Then I get a blue horizontal axes. But if I do
test = Plot[{curve0[x]}, {x, 0, 1},
Frame -> {True, True, False, False},
FrameStyle -> {Directive[Arrowheads[.02]], None, None, None}]
I get nothing.
(I am using frames because my axes labels are long and frames place
the labels below the axes rather than at the end--If you have a better
solution to solving that initial problem then please let me know.)
Thanks!