Version

SetRowLabels Method (DataAppearance)

Sets a string array that contains the row (or series) labels for this DataSource.
Syntax
'Declaration
 
Public Sub SetRowLabels( _
   ByVal labelStrings() As String _
) 
public void SetRowLabels( 
   string[] labelStrings
)

Parameters

labelStrings
An array of Strings which contain the RowLabels that the chart will use for each row of data in the DataSource.
Remarks

Be sure to pass in an array of strings with a count equal to the number of rows of data.

Also set the UseRowLabelsColumn property to False to force the use of this array.

To get a reference to the array once it has been initialized, use the GetRowLabels method.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also