Re: Frameless Window in Manipulate
- To: mathgroup at smc.vnet.net
- Subject: [mg126066] Re: Frameless Window in Manipulate
- From: Barrie Stokes <Barrie.Stokes at newcastle.edu.au>
- Date: Sat, 14 Apr 2012 03:11:51 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <jm502p$2mf$1@smc.vnet.net> <201204130854.EAA19433@smc.vnet.net>
Hi Nasser
I think what the original poster wanted was
Manipulate[A = List[{{1, 3}, {4, x}}];
ListPlot[A, ImageSize -> 200, PlotRange -> 10,
Joined -> True], {{x, 1}, 0, 5, 1}, Paneled -> False] // Panel
Cheers
Barrie
>>> On 13/04/2012 at 6:54 pm, in message <201204130854.EAA19433 at smc.vnet.net>,
"Nasser M. Abbasi" <nma at 12000.org> wrote:
> On 4/11/2012 5:20 PM, Scott Colwell 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,
>>
>
>
> hi;
>
> Do you mean you want to remove the control itself? (the slider in your
> example)? That is the only "gray" area I see. The plot itself
> has white background.
>
> You can't really remove the slider itself, but you can
> remove the panel around Manipulate, use Paneled -> False,
> may be that is what you meant. But I think it looks better
> with Panel:
>
> Manipulate[
> A = List[{{1, 3}, {4, x}}];
> ListPlot[A, ImageSize -> 200, PlotRange -> 10, Joined -> True],
> {{x, 1}, 0, 5, 1}, Paneled -> False]
>
> --Nasser
- References:
- Re: Frameless Window in Manipulate
- From: "Nasser M. Abbasi" <nma@12000.org>
- Re: Frameless Window in Manipulate