Re: Plot with multiple (> 2) horizontal axes
- To: mathgroup at smc.vnet.net
- Subject: [mg38137] Re: Plot with multiple (> 2) horizontal axes
- From: "ng" <removethisgeorgakopoulos at mindspring.com>
- Date: Tue, 3 Dec 2002 04:35:02 -0500 (EST)
- References: <as5q0q$nhl$1@smc.vnet.net>
- Reply-to: "ng" <georgakopoulosNOSPAM at LETSSTOPGETTINGSPAMmindspring.com>
- Sender: owner-wri-mathgroup at wolfram.com
Store your graphic in a variable, then add to it the necessary graphics primitives using a Show[ ] command. graph1=...your graphic... maxx=your maximum x Show[{graph1, Graphics[{ Line[ {{0,-.1},{maxx,-.1}}],Line[{{0,-.2},{maxx,-.2}}]}]}]; Luck, Nicholas "kj" <kj345 at lycos.com> wrote in message news:as5q0q$nhl$1 at smc.vnet.net... > > For reasons too involved to go into, I need to produce a plot with 4 > horizontal scales running in parallel along the bottom edge. I would > appreciate recipes/suggestions for doing this. > > Thanks! > > kj >