Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在通过 excel 宏创建图表时遇到了一个小问题。我选择的图表类型是“Clustered Horizontal Cylinder”。我想知道如何编写宏来格式化图表墙。例如,我希望图表墙看起来像:旋转:X - 0 度;Y - 7 度。我的英语太差了。对不起 !
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