.netCHARTING v10.5 Documentation
Example 


dotnetCHARTING Namespace > Chart Class : DrillDownChain Property
DrillDownChain Property

Gets or sets the drill down chain which activates automatic time based drill down if date grouping used.

If Limit or SplitByLimit used with ShowOther option, setting drill down chain to "Other" or "OtherAll" activates automatic drill down to other elements or series.

"OtherAll" shows all other elements or series in the second level.
"Other" shows the next number of elements or series has been set in limit or splitByLimit propertes.

Syntax
'Declaration
 
Public Property DrillDownChain As String
'Usage
 
Dim instance As Chart
Dim value As String
 
instance.DrillDownChain = value
 
value = instance.DrillDownChain
public string DrillDownChain {get; set;}
Remarks
When using automated drill down with DateGrouping, this property controls the drill down chain, or hierarchy, that is followed. In addition you can override names to be displayed for the different drill down levels.
Example

This samples demonstrate drill down with dategrouping.

For complete drill down samples see Features/Drilldown samples.

Chart.DrillDownChain = "Year,Month,Day";
Chart.DrillDownChain = "Year=Current Year,Month=My Month,Day=One day";
Chart.DrillDownChain = "Year,Month,Day" 
Chart.DrillDownChain = "Year=Current Year,Month=My Month,Day=One day"
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