AwGraph.SeriesName Property

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

Home | Software & Source Code Library | About Us | Information Based on Law | Terms of Service
Software List | Product Price List | How to Buy | Order Form | FAQ | Site Map
Copyright (C) 2001-2012 Asterworld. All Rights Reserved.