Skip to main content
3 of 5
added 18 characters in body
kglr
  • 403.4k
  • 18
  • 501
  • 959

You can use Labeled or Panel using the second and third arguments to specify the labels and their positions:

Labeled[Slider[Dynamic[f], {f1, f2}], {"frequency", Row[{Dynamic[f], "Hz"}, Spacer[2]]}, {Left, Right}, LabelStyle -> style] 

enter image description here

Panel[Slider[Dynamic[f], {f1, f2}], {"frequency", Row[{Dynamic[f], "Hz"}, Spacer[2]]}, {Left, Right}, LabelStyle -> style] 

enter image description here

kglr
  • 403.4k
  • 18
  • 501
  • 959