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 :
ControlType->LabeledSlider
and drop theAppearance->"Labeled"
part. This will give you a much more compact and neater box. – PyriteControlPlacement -> Bottom
for theManipulate
as opposed the the individual controller, then it does not effect the position of the label in aLabeledSlider
. – Capriole