Re: Frameless Window in Manipulate
- To: mathgroup at smc.vnet.net
- Subject: [mg126021] Re: Frameless Window in Manipulate
- From: David Reiss <dbreiss at gmail.com>
- Date: Fri, 13 Apr 2012 04:48:09 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <jm502p$2mf$1@smc.vnet.net>
If I understand your question properly this is the purpose of the
Paneled option:
Manipulate[A = List[{{1, 3}, {4, x}}];
ListPlot[A, ImageSize -> 200, PlotRange -> 10,
Joined -> True], {{x, 1}, 0, 5, 1},
Paneled -> False]
--David
On Apr 11, 6:20 pm, Scott Colwell <scolw... at uoguelph.ca> wrote:
> Does any one know how to remove the light grey inside frame in manipulate. For example, the one around the plot in this manipulate:
>
> Manipulate[
> A = List[{{1, 3}, {4, x}}];
> ListPlot[A,
> ImageSize -> 200,
> PlotRange -> 10,
> Joined -> True
> ],
> {{x, 1}, 0, 5, 1}]
>
> Thanks,