隐藏图表系列Excel VBA 2013

时间:2016-06-21 09:32:18

标签: excel vba excel-vba charts series

如果它有某个名字,我想在图表中隐藏/取消隐藏系列。我试图使用以下内容,但它不会产生任何结果。

 For Each Series In refChart.SeriesCollection
        If Sheet2.Range("V42") = "No" Then
            If Series.Name = "Avg" Then
'both options don't work
                Series.Format.Line.Visible = msoFalse
                'or
                'Series.IsFiltered = False
            End If
        End If
    Next

refChart是图表类型

0 个答案:

没有答案