When I put Antialiasing -> True in a BarChart3D, it doesn't work. Here is the code.
BarChart3D[{{1, 2, 3},{2,3,4}},
ChartStyle -> None,
ChartLayout -> "Grid",
Ticks -> None,
Antialiasing -> True]

How can I apply anti-aliasing to a BarChart3D?
Antialiasinga valid option forBarChart3D? (Not at a Mathematica machine at the moment?) – cormullion May 12 '13 at 09:55Antialiasingis aStyleoption, not aBarChart3Doption, so you have to wrap the bar chart in aStyle. – amr May 12 '13 at 09:57BarChart3Dthat has the problem? Do you get antialiasing on other 3D graphics? – Simon Woods May 12 '13 at 19:26Style[Graphics3D[Cuboid[{1, 1, 1}]], Antialiasing -> True]– SEngstrom May 13 '13 at 02:37Plot3D[Sin[x^2 + y^2], {x, -1, 1}, {y, -1, 1}]does have antialiasing? Or only 2D graphics do? – Szabolcs May 13 '13 at 14:37Antialiasing -> Trueis inappropriate forGraphics3D. Moving the slider in Preferences > Appearance > Graphics sufficiently to the right should cure this problem. – m_goldberg Aug 10 '13 at 22:33