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.
graphBuild.SeriesCount = 3
graphBuild.SeriesName(0) = "Series A"
graphBuild.SeriesName(1) = "Series B"
graphBuild.SeriesName(2) = "Series C"
graphBuild.SeriesCount = 3;
graphBuild.SeriesName[0] = "Series A";
graphBuild.SeriesName[1] = "Series B";
graphBuild.SeriesName[2] = "Series C";
See Also
AwGraphBuild Class | Asterworld.Graph Namespace