Gets the array of series color of the graph.
[Visual Basic]
Public ReadOnly Property SeriesColor As Color()
[C#]
public System.Drawing.Color[] SeriesColor {get;}
Property Value
Array of series color.
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 color of each series.
graphBuild.SeriesCount = 3
graphBuild.SeriesColor(0) = Color.Red
graphBuild.SeriesColor(1) = Color.Blue
graphBuild.SeriesColor(2) = Color.Green
graphBuild.SeriesCount = 3;
graphBuild.SeriesColor[0] = Color.Red;
graphBuild.SeriesColor[1] = Color.Blue;
graphBuild.SeriesColor[2] = Color.Green;
See Also
AwGraphBuild Class | Asterworld.Graph Namespace