Re: Size of numerical slider value in Manipulate
- To: mathgroup at smc.vnet.net
- Subject: [mg102876] Re: Size of numerical slider value in Manipulate
- From: Sjoerd <s.c.devries at xs4all.nl>
- Date: Tue, 1 Sep 2009 03:51:42 -0400 (EDT)
- References: <h7g8uh$6pj$1@smc.vnet.net>
It seems that you can get every formatting option except size: Manipulate[ Plot[Sin[n x], {x, -5, 5}, PlotRange -> {-1, 1}], {{n, 1, "mylabel"}, 1, 3, Appearance -> "Labeled"}, LabelStyle -> Directive[FontFamily -> "Arial", FontSlant -> Italic, Red, FontSize -> 30, FontOpacity -> 0.5]] Looks like an ommision to me. Cheers -- Sjoerd On Aug 31, 12:33 pm, Porscha Louise McRobbie <pmcro... at umich.edu> 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