Re: Re: Problem with the Graphical Arrows
- To: mathgroup at smc.vnet.net
- Subject: [mg22642] Re: [mg22622] Re: Problem with the Graphical Arrows
- From: Jacqueline Zizi <jazi at club-internet.fr>
- Date: Thu, 16 Mar 2000 09:10:58 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
ANSWER
========
Hi Steve!
Your arrow is not in the same range than your plots, so you can't see
it.
Copy paste in your code for example this line
Arrow[{25000 + .9, .00009}, {20000 + .1, .00001}]
instead of yours and this should work.
That is to pick up the idea. Of course adapt it to your need.
QUESTION:
=========
What am I doing wrong ?
See my code below.
Needs["Graphics`Arrow`"]
Needs["Graphics`FilledPlot`"]
Show[plot1,plot3,plot2,plot4,
PlotRange->{{20000,52000},{0,.00014}},
FrameTicks->{None,None,None,None},
FrameLabel->{"xlabel",
"ylabel" },
Epilog->{Text["A",Scaled[{.315,.97}]],
Text["B",Scaled[{.62,.73}]],
Text["C",Scaled[{.46,.36}]],
Text["D",Scaled[{.55,.9}]],
Text["E",Scaled[{.8,.8}]],
Text["F",Scaled[{.65,.26}]],
Arrow[{.9,.9},{.1,.1}] }]