I am using a nested frame within Manipulate to display a computed field + a graphic. Is it possible to use distinctly different labels for the two outputs (number and graphic)?
Manipulate[ Column[{ Cos[n + Log[n]], Graphics3D[Cylinder[{{0, 0, 0}, {0, 0, n}}, 1]] }], {n, 2, 20}, FrameLabel -> Style["Volume"]]
Thanks for the suggestions. The above solution works. But I was hoping there would be way to apply multiple Framelabels in multiple frames. Is it even possible?
Another variant:
Manipulate[ Grid[{ { N@Cos[n + Log[n]], Graphics3D[Cylinder[{{0, 0, 0}, {0, 0, n}}, 1]] }, Text@Style[#, "Verdana"] & /@ {"Number", "Volume"} }, Frame -> All, Spacings -> {Automatic, 2} ], {n, 2, 20} ]
Something like this?
Manipulate[Column[{StringJoin["Value = ", ToString[Cos[n + Log[n]] // N]], Graphics3D[Cylinder[{{0, 0, 0}, {0, 0, n}}, 1]]}], {{n, 3}, 2, 20}, FrameLabel -> Style["Volume"]]
Cheers,
M.