Counts the number of series in a graph.

Graph controls in windows and user objects, and graphs in DataWindow controls
controlname.SeriesCount ( { graphcontrol } )
Argument  | 
Description  | 
|---|---|
controlname  | 
The name of the graph for which you want the number of series, or the name of the DataWindow control containing the graph  | 
graphcontrol (DataWindow control only) (optional)  | 
A string whose value is the name of the graph in the DataWindow control for which you want the number of series  | 
Integer. Returns the number of series in the graph if it succeeds and -1 if an error occurs. If any argument’s value is null, SeriesCount returns null.
These statements store in the variable li_series_count the number of series in the graph gr_product_data:
integer li_series_count
li_series_count = gr_product_data.SeriesCount()
These statements store in the variable li_series_count the number of series in the graph gr_computers in the DataWindow control dw_equipment:
integer li_series_count
li_series_count = &
		dw_equipment.SeriesCount("gr_computers")
| Copyright © 2004. Sybase Inc. All rights reserved. | 
 
 | 
|