dotnetCHARTING Send comments on this topic.
DrillDownChain Property
See Also  Example
dotnetCHARTING Namespace > Chart Class : 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

Visual Basic (Declaration) 
Public Property DrillDownChain As String
Visual Basic (Usage)Copy Code
Dim instance As Chart
Dim value As String
 
instance.DrillDownChain = value
 
value = instance.DrillDownChain
C# 
public string DrillDownChain {get; set;}

Example

This samples demonstrate drill down with dategrouping.

For complete drill down samples see Features/Drilldown samples.

C#Copy Code
Chart.DrillDownChain = "Year,Month,Day";
Chart.DrillDownChain =
"Year=Current Year,Month=My Month,Day=One day";
    
Visual BasicCopy Code
Chart.DrillDownChain = "Year,Month,Day"
Chart.DrillDownChain = "Year=Current Year,Month=My Month,Day=One day"

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.

See Also

© 2010 All Rights Reserved.