Re: Axis missing from simple ListPlot
- To: mathgroup at smc.vnet.net
- Subject: [mg77607] Re: Axis missing from simple ListPlot
- From: dh <dh at metrohm.ch>
- Date: Thu, 14 Jun 2007 05:10:29 -0400 (EDT)
- References: <f4okpv$6q3$1@smc.vnet.net>
Hi Andrew, I think your syntax is wrong. Automatic can replace a coordinate range not a single coordinate. Therefore some examples: PlotRange->Automatic PlotRange->{All,Automatic} PlotRange->{{0,3},Automatic} PlotRange->{{0,3},{1,4}} hope this helps, Daniel Andrew Moylan wrote: > Consider this simple ListPlot: > > ListPlot[{{0, 3}, {1, 2}}, Joined -> True, > PlotRange -> {1, Automatic}] > > The resulting plot has no visible horizonal axis. > > The axis reappears if you replace Automatic with an explicit number, > like 4, or remove the PlotRange setting entirely. The axis stays > missing if you replace Automatic with Full or All. > > Any ideas? > >