我在将{shadow}设置为xlXYScatter
图表中的系列集合时出现问题。绘制阴影但忽略所有参数(颜色,透明度等)。我想我没有正确地为系列集合调用shadow属性。但我不知道该如何做对。有什么建议?
谢谢!
...
With .SeriesCollection(1).Format.Shadow
.ForeColor.RGB = RGB(0, 0, 0)
.OffsetX = 3
.OffsetY = 3
.Transparency = 0.4
.Visible = True
End With
答案 0 :(得分:0)
好吧,我自己找到了一个解决方案。仅适用于有同样问题的人。使用:
...
.SeriesCollection(1).Format.Shadow.Type = msoShadow21
...
阴影被绘制到系列集合中。可以通过改变数字来设置不同类型的阴影。 msoShadow34
或msoShadow25
等。