Version

DrillElement Constructor(Int32,Int32,ChartType,Object)

Constructor for DrillElement accepting arguments that initialize all mandatory properties.
Syntax
'Declaration
 
Public Function New( _
   ByVal dataRow As Integer, _
   ByVal dataCol As Integer, _
   ByVal childChartType As ChartType, _
   ByVal dataSource As Object _
)
public DrillElement( 
   int dataRow,
   int dataCol,
   ChartType childChartType,
   object dataSource
)

Parameters

dataRow
The row in the parent chart's data underlying the drillable chart element.
dataCol
The column in the parent chart's data underlying the drillable chart element.
childChartType
The chart type presented in the child chart.
dataSource
The data source to be bound to the child chart.
Remarks

This constructor provides developers with a convenient means of initializing all mandatory properties of a DrillElement object. By default, DrillElement objects created by this constructor do not specify an IDrillDown implementation to receive callback notifications.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, 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