Re: Size of numerical slider value in Manipulate
- To: mathgroup at smc.vnet.net
- Subject: [mg102979] Re: [mg102860] Size of numerical slider value in Manipulate
- From: Jaebum Jung <jaebum at wolfram.com>
- Date: Thu, 3 Sep 2009 05:42:55 -0400 (EDT)
- References: <200908311033.GAA06969@smc.vnet.net>
You could try Control with Row. Manipulate[Plot[Sin[n x],{x,-5,5},PlotRange->{-1,1}],Row[{Control@{{n,1,Style["mylabel",24,Bold]},1,3},Style[Dynamic[n],24,Bold]}]] - Jaebum Porscha Louise McRobbie wrote: > Hello, > > How can I control the font size of the displayed value of the slider > variable "n" in the following? > > Manipulate[ > Plot[Sin[n x], {x, -5, 5}, > PlotRange -> {-1, 1}], {{n, 1, Style["mylabel", 24, Bold]}, 1, 3, > Appearance -> "Labeled"}] > > I've tried using Style, LabelStyle and Appearance -> {"Labeled", > Larger}, none of which seem to work. > > Thanks in advance, > Porscha > >