立体縦棒グラフを回転させようとしています。これまでのところ、次のものがあります。
ActiveChart.Name = "44 Chart 7"
With ActiveChart
.SetSourceData Source:=pzx.Range("L126:M135")
.HasTitle = False
.HasTitle = True
.Shapes("44 Chart 7").ThreeD.RotationX = 0
.ChartTitle.Text = "Classification Actions"
.ChartArea.Font.Color = RGB(0, 0, 140)
.ChartTitle.Font.Name = "Arial"
.ChartTitle.Font.Size = 10
.Legend.Font.Size = 8
.Legend.Font.Name = "Arial"
.ChartStyle = 11
.ChartArea.Format.Line.Visible = msoFalse
End With
2 つの質問があります -
1) グラフに自分で積極的に名前を付けない場合、どのようにグラフの名前が付けられるかを決定するものは何ですか? 2) このコードが機能しない理由を知っていますか?
ここに私が受け取ったエラーがあります -
実行時エラー 7 メモリ不足
本当にありがとう!