如何将系列添加到图表然后立即删除?

时间:2015-02-07 22:36:51

标签: excel vba excel-vba

使用VBA对Excel文档进行更改后,我的Excel文档中的图表不会更新。

我记得以前读过,可以通过创建新的数据系列来强制图表更新,然后立即再次删除它。

如何以不会导致错误或对我的图表造成永久性损害的方式执行此操作?

1 个答案:

答案 0 :(得分:0)

假设您有一个名为chrt

的图表对象
With chrt.chart.SeriesCollection
'Create a new series
.NewSeries
End With
With chrt.chart
'Delete the newly created series
.SeriesCollection(.SeriesCollection.Count).delete
End With