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"]]
