0

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