Version

IDrillDown Interface

Implementing the IDrillDown interface is optional, but recommended, when the application would like notification of drill down events.
Syntax
'Declaration
 
Public Interface IDrillDown 
public interface IDrillDown 
Remarks

Developers set a reference to an IDrillDown implementation on any or all DrillElement objects added to the Infragistics.UltraChart.Resources.Appearance.DrillDownAppearance.DrillElements property of DrillDownAppearance. This reference gets called after the user clicks on a chart element in the parent chart to drill down, and immediately before the child chart (corresponding to that DrillElement) becomes the renders on the control. Some behavior that might be necessary in the IDrillDown callback implementation a developer is expected to provide to respond to these notifications includes changing the appearance of axis labels (for a different child chart type than that of the parent), changing the chart's title, and/or altering other application-dependent logic based on the currently displayed chart.

While the same IDrillDown implementation can be provided to handle all chart drill downs, it is recommended that one IDrillDown implementation be created for each child chart. This permits any data element rendered in the chart to be distinguishable by the IDrillDown implementation (in the supplied row and column arguments to the Drill() method).

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