Version

DrillElement Constructor(Int32,Int32,ChartType,Object,IDrillDown)

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

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.
callBack
A reference to an object implementing IDrillDown that will be notified when the chart element corresponding to this DrillElement has been drilled.
Remarks

This constructor provides developers with a convenient means of initializing all commonly-used properties of a DrillElement object, including the optional IDrillDown callback.

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