Re: Frameless Window in Manipulate
- To: mathgroup at smc.vnet.net
- Subject: [mg126003] Re: Frameless Window in Manipulate
- From: "djmpark" <djmpark at comcast.net>
- Date: Thu, 12 Apr 2012 02:36:05 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <21374724.22506.1334183408037.JavaMail.root@m06>
Scott,
If you don't mind "rolling your own":
DynamicModule[{x = 1},
Panel[
Column[{
Row[{"x", Spacer[5],
Slider[Dynamic[x], {0, 5, 1}, Appearance -> "Labeled"]}],
Dynamic@
ListPlot[List[{{1, 3}, {4, x}}], ImageSize -> 250,
PlotRange -> 10, Joined -> True]
}](* Column *)
]
]
You could even drop the Panel if you don't want it.
This is a little more work, but much more versatile.
David Park
djmpark at comcast.net
http://home.comcast.net/~djmpark/index.html
From: Scott Colwell [mailto:scolwell at uoguelph.ca]
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,