April 2006
Beginner
1114 pages
98h 16m
English
series.ClearFormats( )
Restores the series ChartFillFormat object back to its default. For example, the following code removes the pictures applied in the ApplyPict procedure earlier:
Sub RemovePict( )
Dim chrt As Chart, sr As Series
' Get a chart.
Set chrt = ActiveChart
' Get the first series.
Set sr = chrt.SeriesCollection(1)
' Remove the formatting
sr.ClearFormats
End SubRead now
Unlock full access