0

我在通过 excel 宏创建图表时遇到了一个小问题。我选择的图表类型是“Clustered Horizo​​ntal Cylinder”。我想知道如何编写宏来格式化图表墙。例如,我希望图表墙看起来像:旋转:X - 0 度;Y - 7 度。我的英语太差了。对不起 !

4

1 回答 1

1

Using Record, these are the statements you can make (with the Chart in question Active).

Sub Walls()
ActiveChart.Walls.Select
Selection.Format.ThreeD.RotationX = 0
Selection.Format.ThreeD.RotationY = 97
End Sub
于 2013-09-16T16:57:27.220 回答