

| Type | Description | |||
| Propery as DefSerieEnum | A DefSerieEnum expression that indicates the Serie's property to access | |||
| Variant | A Variant expression that specifies the default value assigned to the specified property when a new serie is added. |
For instance, the following sample sets a common value for Stack and ShowValue properties:
With .Series
.Def(exSerieStack) = "A"
.Def(exSerieShowValue) = 1
.Add("3").Color = RGB(91,148,201)
.Add("5").Color = RGB(238,127,48)
.Add("2").Color = RGB(167,167,167)
End With