dotnetCHARTING Send comments on this topic.
DataGrid Property
See Also 
dotnetCHARTING Namespace > DataEngine Class : DataGrid Property


Gets or sets the control object of a datagrid control that will be populated with the charted data.

Syntax

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

Remarks

This property accepts a datagrid control object. If set, the data represented in the chart is populated in the datagrid of the same name. You must also define a datagrid control within the same script. This property is useful when displaying tabular chart data along with your charts.

See Also