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マクロでグラフを作成する際に小さな問題があります。私が選んだチャートのタイプは「クラスター化された水平円柱」です。グラフの壁をフォーマットするマクロをどのようにコーディングするのだろうか。例として、チャートの壁を次のように表示したい: Rotation : X - 0 degree ; 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