我正在尝试旋转我的 3D 柱形图。到目前为止,我有以下内容:
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
我有两个问题——
1)如果您自己不主动命名图表,是什么决定了图表的命名方式 2)您知道为什么此代码不起作用
这是我收到的错误 -
运行时错误 7 内存不足
非常感谢!