MathGroup Archive 2009

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

Search the Archive

Re: Showing the Current Value of a Slider in Manipulate

  • To: mathgroup at smc.vnet.net
  • Subject: [mg103543] Re: Showing the Current Value of a Slider in Manipulate
  • From: Harutyun Amirjanyan <amirjanyan at gmail.com>
  • Date: Sun, 27 Sep 2009 07:32:40 -0400 (EDT)
  • References: <200909241151.HAA29183@smc.vnet.net> <h9kpgi$mrk$1@smc.vnet.net>

Probably there might be situations where Labeled isn't the best behavior
but your example is not one of them
first LabelStyle changes the style of the slider's numerical value. it
doesn't change FontSize but it must be a bug

Manipulate[
 Plot[Sin[x (1 + a x)], {x, 0, 6}], {{a, 0, "Multiplier"}, 0, 4,
  Appearance -> "Labeled"}, LabelStyle -> {Red, 24,Italic}]

second Magnification must work on Manipulates as it does on regular
cells.so that one wouldn't need to change text sizes for presentations
and finally it's not just slider's numerical value but a very
convenient input field which works better than the one under the +
sign


  • Prev by Date: Convert 2D table to 1D list
  • Next by Date: Is it possible to create a single csv file one row at a time using
  • Previous by thread: Re: Showing the Current Value of a Slider in Manipulate
  • Next by thread: Re: Re: Showing the Current Value of a Slider in Manipulate