BarChart3D Axes Label Problem
- To: mathgroup at smc.vnet.net
- Subject: [mg105305] BarChart3D Axes Label Problem
- From: donabc at comcast.net
- Date: Fri, 27 Nov 2009 06:28:38 -0500 (EST)
Here is a 3D BarChart
data = {{1, 2, 3, 4}, {5, 6, 7, 8}};
BarChart3D[data, ChartLayout -> "Grid", ChartLabels -> {Range[2],
{"A", "B", "C", "D"}},
PlotLabel -> Style["Annualized TR", "Title", 14],
ViewPoint -> {3.33, -8.26, 5.36},
AxesLabel -> {Style["trPeriod", Bold, 14 ], Style["pendingNDays",
Bold, 14], Style["annualTR", Bold, 14]},
ImageSize -> {600, 600},
LabelingFunction -> (Row[{#, "%"}] &) ]
I would like to view the BarChart using
ViewPoint->{-2,-2,1} when it is created.
But this new viewing angle obscures the y and z axis labels and their
associated tick mark labels.
How do I bring the y and z axis labels and their tick mark labels
over to their
respective opposite sides so they can be seen from this new angle?
Thank you in advance.