MathGroup Archive 2012

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Frameless Window in Manipulate

  • To: mathgroup at smc.vnet.net
  • Subject: [mg126051] Re: Frameless Window in Manipulate
  • From: Bob Hanlon <hanlonr357 at gmail.com>
  • Date: Fri, 13 Apr 2012 04:58:34 -0400 (EDT)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • References: <201204112218.SAA02702@smc.vnet.net>

Manipulate[
 A = List[{{1, 3}, {4, x}}];
 ListPlot[A,
  ImageSize -> 200,
  PlotRange -> 10,
  Joined -> True],
 {{x, 1}, 0, 5, 1},
 Paneled -> False]

Note also that you could use ListLinePlot rather than using the Joined
option with ListPlot.


Bob Hanlon


On Wed, Apr 11, 2012 at 6:18 PM, Scott Colwell <scolwell 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,
>



  • Prev by Date: Re: Frameless Window in Manipulate
  • Next by Date: Re: What characters are allowed in mathematica variable names? i.e. how
  • Previous by thread: Frameless Window in Manipulate
  • Next by thread: Re: Frameless Window in Manipulate