Re: Manipulate jitter
- To: mathgroup at smc.vnet.net
- Subject: [mg105461] Re: Manipulate jitter
- From: "Nasser M. Abbasi" <nma at 12000.org>
- Date: Fri, 4 Dec 2009 04:30:06 -0500 (EST)
- References: <hf86u0$1bc$1@smc.vnet.net>
"Jeff" <jbwjbwjbw at gmail.com> wrote in message news:hf86u0$1bc$1 at smc.vnet.net... >I want to use Manipulate to slide the range of a Plot. I get jitters > when an axis tick mark and associated number coincides with the frame > edge. A simple example is: > > Manipulate[ > Plot[Sin[x], {x, s, s + 10}, PlotRange -> {{s, s + 10}, {-1, 1}}, > Frame -> True, Axes -> False], {s, 0, 20}] > > Anyone know how to stop the jitters? > add image padding: Manipulate[Plot[Sin[x],{x,s,s+10}, PlotRange->{{s,s+10},{-1,1}}, Frame->True, Axes->False, ImagePadding->10] ,{s,0,20} ] --Nasser