I want to place the Slider of manipulate as I want but I can't, help me to get rid of it
Manipulate[Plot[Sin[a x + b], {x, 0, 6}], {{a, 2, ""}, 1, 4,
ControlPlacement -> Top}, {{b, 0, ""}, 0, 10,
ControlPlacement -> Bottom}, ContentSize -> 500]
Instead of ControlPlacement -> Top, ControlPlacement -> Bottom I want to use ControlPlacement -> {Top,Center} and ControlPlacement -> {Bottom,Right} respectively.
Centeris not valid forControlPlacement.ControlPlacement -> {Bottom, Right}means put first control atBottomand second control atRight– m_goldberg Jun 14 '13 at 04:27ControlPlacement -> {Bottom, Right}means put second control in Bottom right. – niren Jun 14 '13 at 06:33