Gets the array of series name of the graph.
[Visual Basic]
Public ReadOnly Property SeriesName As String()
[C#]
public string[] SeriesName {get;}
Property Value
Array of series name.
Remarks
Length of the array is same as the length that is set by SeriesCount.
Example
How to set the series count as 3 and set the name of each series.
awGraph1.SeriesCount = 3
awGraph1.SeriesName(0) = "Series A"
awGraph1.SeriesName(1) = "Series B"
awGraph1.SeriesName(2) = "Series C"
awGraph1.SeriesCount = 3;
awGraph1.SeriesName[0] = "Series A";
awGraph1.SeriesName[1] = "Series B";
awGraph1.SeriesName[2] = "Series C";
See Also
AwGraph Class | Asterworld.Graph Namespace