.netCHARTING v10.5 Documentation
Example 


dotnetCHARTING Namespace > Chart Class : DataGrid Property
DataGrid Property (Chart)
Gets or sets the control object or ID of a datagrid control that will be populated with the charted data.
Syntax
'Declaration
 
Public Property DataGrid As Object
'Usage
 
Dim instance As Chart
Dim value As Object
 
instance.DataGrid = value
 
value = instance.DataGrid
public object DataGrid {get; set;}
Remarks
This property accepts a control ID for a datagrid. If set, the data represented in the chart is populated in the datagrid of the same name. You must also define a datagrid control with an appropriately named ID within the same script. This property is useful when displaying tabular chart data along with your charts.
Example
Chart.DataGrid = myChartData;
Chart.DataGrid = myChartData
Requirements

Target Platforms: 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