Gets and sets a collection of series. | |
Syntax: | Set CimSeriesList = object.Series object.Series = CimSeriesList |
Description: | CimGraphControl.Series
gives you access to all the series
on the control. Series are the graphical representation of data. The value of this property defaults to having no series. Example The following CimView script excerpt accesses an existing series and changes its data count: Dim ExistingSeries as CimSeries Set ExistingSeries = cimOleObj.Series.Item("A") ExistingSeries.Data.Count = 250 |