Re: Manipulate jitter
- To: mathgroup at smc.vnet.net
- Subject: [mg105460] Re: [mg105459] Manipulate jitter
- From: "David Park" <djmpark at comcast.net>
- Date: Fri, 4 Dec 2009 04:29:56 -0500 (EST)
- References: <20730792.1259839260571.JavaMail.root@n11>
Use enough ImagePadding around the frame. Manipulate[Plot[Sin[x], {x, s, s + 10}, PlotRange -> {{s, s + 10}, {-1, 1}}, ImagePadding -> {{30, 10}, {20, 10}}, Frame -> True, Axes -> False], {s, 0, 20}] David Park djmpark at comcast.net http://home.comcast.net/~djmpark/ From: Jeff [mailto:jbwjbwjbw at gmail.com] 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?