dotnetCHARTING Send comments on this topic.
DataGridSeriesHeader Property
See Also  Example
dotnetCHARTING Namespace > Chart Class : DataGridSeriesHeader Property


Gets or sets the header label of the DataGrid control specified by the DataGrid property.

Syntax

Visual Basic (Declaration) 
Public Property DataGridSeriesHeader As String
Visual Basic (Usage)Copy Code
Dim instance As Chart
Dim value As String
 
instance.DataGridSeriesHeader = value
 
value = instance.DataGridSeriesHeader
C# 
public string DataGridSeriesHeader {get; set;}

Example

C#Copy Code
Chart.DataGridSeriesHeader = "Sales for 2003";
    
Visual BasicCopy Code
Chart.DataGridSeriesHeader = "Sales for 2003"

Remarks

This property controls the header label used for the datagrid series name column. If set to "none" the series name column will be removed. If set to "%XAxisLabel", xAxis label set as the header label of the datagrid.

See Also

© 2010 All Rights Reserved.