Can I apply Style to the output of "Labeled" in the below ?

Manipulate[\[Lambda],
Control@{{\[Lambda], 401,
Style["     \[Lambda]", Black, Bold, 24]},
Range[401, 570, 1],
ControlType -> Slider,
ControlPlacement -> Bottom,
Appearance -> "Labeled",
ImageSize -> 200}]

That is on the right part of the Slider :

enter image description here

link|improve this question

3  
You can use ControlType->LabeledSlider and drop the Appearance->"Labeled" part. This will give you a much more compact and neater box. – yoda Oct 16 '11 at 23:51
But then the Number goes underneath for me. – 500 Oct 16 '11 at 23:56
@500: If you set the ControlPlacement -> Bottom for the Manipulate as opposed the the individual controller, then it does not effect the position of the label in a LabeledSlider. – Simon Oct 17 '11 at 0:42
@Simon, Thanks again ! – 500 Oct 17 '11 at 1:08
feedback

2 Answers

up vote 10 down vote accepted

You want the option BaseStyle (which appears in Options[Slider]). E.g.

Manipulate[
 Plot[Cos[k x], {x, 0, 2 Pi}, PlotLabel -> "Cosine"], 
 {{k, 1, Style["x", Black, Bold, 24]}, 0, 4, 
  ControlType -> Slider, Appearance -> "Labeled", 
  ControlPlacement -> Bottom, ImageSize -> 200, 
  BaseStyle -> {Red, Large, Italic, FontFamily -> "Times"}}]

cosine

When looking at this I noticed that you can also use the almost undocumented ControlType -> LabeledSlider, just for something different.

link|improve this answer
And now I notice that yoda has just commented about LabeledSlider above... – Simon Oct 16 '11 at 23:58
Thank You Simon but it interfere with my plot labels. Is there a mean to avoid that ? – 500 Oct 17 '11 at 0:28
@500: The DefaultBaseStyle has to be set for the control object - not the manipulate. See the edit. – Simon Oct 17 '11 at 0:39
Why would you want to use DefaultBaseStyle instead of BaseStyle (which seems to work fine as well)? – Sjoerd C. de Vries Oct 17 '11 at 20:49
@Sjoerd: No good reason - and now that you bring it up, BaseStyle is probably preferable. – Simon Oct 17 '11 at 21:27
show 1 more comment
feedback

It seems to be at least partially affected by LabelStyle and BaseStyle. (I'm having trouble changing the font, for some reason, but size, weight, color seem to work fine.)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.