Re: Huge wide plot placing into a pane
- To: mathgroup at smc.vnet.net
- Subject: [mg100895] Re: [mg100886] Huge wide plot placing into a pane
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Thu, 18 Jun 2009 04:48:55 -0400 (EDT)
- Reply-to: hanlonr at cox.net
f[x_] := x^2 + 3
xmin = 0;
xmax = 10;
delta = 2;
Manipulate[
Plot[f[x], {x, xmin, xmin + delta},
PlotRange -> {0, 105},
ImageSize -> 600],
{xmin, 0, xmax - delta, delta}]
Bob Hanlon
---- meitnik <meitnik at gmail.com> wrote:
=============
hi,
I have a huge wide plot, too wide for the notebook. I am wanting to
somehow make it scroll horizontal via a pane; however I want the axes
info to remain outside the pane so as I scroll you can figure out what
he plot is showing. Anyone has an example or give clues how I might do
this?
Thanks Andrew