I am drawing a Bar Chart using this code:
outlabels={"Label1(1-10)", "Label1(11-20)", "Label1(21-30)"};chartouttable={{1, 1, 1}, {2, 3, 2}, {1, 1, 1}};BarChart3D[chartouttable, ChartLayout -> "Grid", ChartLabels -> Placed[outlabels, Center]]
And I get:
A little closer to what you want.
BarChart3D[chartouttable, ChartLayout -> "Grid", ChartLabels -> {Table[Style[x, 12, Bold, Blue], {x, 1, 3}], Style[#, 12, Bold, Blue] & /@ outlabels}, ViewPoint -> {3, -10, 7}]