'Declaration Public ReadOnly Property PieFills As FillCollection
'Usage Dim instance As PieSeries Dim value As FillCollection value = instance.PieFills
public FillCollection PieFills {get;}
'Declaration Public ReadOnly Property PieFills As FillCollection
'Usage Dim instance As PieSeries Dim value As FillCollection value = instance.PieFills
public FillCollection PieFills {get;}
Use the PieFill property to assign a fill to the entire series. Use the PieFills property to assign a fill to a specific point. Assign items to the collection using the Add method, AddRange method, or the indexer.
The number of items in this collection does not have to match the number of data points in the series. If this collection has fewer items, then the extra data points are treated as null point level setting (i.e. unsigned point level setting). If this collection has more items, then the extra items are not used (i.e. extra point level settings are ignored). This collection is initially empty.
If the indexer is called with an index that is greater than the size of the collection, then the collection is automatically expanded with null values up to the specified index.