Skip to content

Latest commit

 

History

History
30 lines (17 loc) · 813 Bytes

How-to-enable-drill-down-in-PivotChart.md

File metadata and controls

30 lines (17 loc) · 813 Bytes
layout title description platform control documentation
post
How to enable drill down in PivotChart | Windows Forms | Syncfusion
How to enable drill down in Syncfusion WinForms Pivot Chart to explore hierarchies by expanding and collapsing levels interactively.
windowsforms
PivotChart
ug

How to enable drill down in PivotChart

The PivotChart has in-built support to drill up and down the PivotSeries population. This behavior can be achieved by enabling the AllowDrillDown property.

{% highlight C# %}

this.pivotChart1.AllowDrillDown = true;

{% endhighlight %}

{% highlight vbnet %}

Me.pivotChart1.AllowDrillDown = True

{% endhighlight %}

Sample: Syncfusion\EssentialStudio<InstalledVersion>\Windows\PivotChart.Windows\Samples\PivotChart Layout\DrillDown Demo\CS