在 Excel VBA 中,我可以使用访问 RadarChart 的每个点
ActiveChart.FullSeriesCollection(1).Points(1).Select
我正在使用
With Selection
.MarkerStyle = -4147
.MarkerSize = 5
End With
With Selection.Format.Fill
.Visible = msoTrue
.UserPicture FilePath + "Red.PNG"
End With
问题是这个标记以边框结束如果我记录一个宏来进行更改并查看代码
Selection.Format.Line.Visible = msoFalse
被记录,但如果同样运行它会导致系列线消失。
有人可以帮助我关闭边框的代码。