Zooming and Scrolling in Windows Forms Pivot Chart

13 Jul 20261 minute to read

You can zoom and scroll the pivot chart. Zooming can be enabled for a single axis or both axes.

Zooming

Zooming can be enabled in the x-axis and y-axis by setting the EnableXZooming and EnableYZooming properties to true.

//Enable the X axis zooming
this.pivotChart1.EnableXZooming = true;
//Enable the Y axis zooming
this.pivotChart1.EnableYZooming = true;
'Enable the X axis zooming
Me.pivotChart1.EnableXZooming = True
'Enable the Y axis zooming
Me.pivotChart1.EnableYZooming = True

Scrolling

Scrolling can be enabled by setting the EnableScrolling property to true.

//Enable the scrolling
this.pivotChart1.EnableScrolling = true;
'Enable the scrolling
Me.pivotChart1.EnableScrolling = True

Sample: <InstalledLocation>\Syncfusion\EssentialStudio\<InstalledVersion>\Windows\PivotChart.Windows\Samples\Zooming and Scrolling\Zooming and Scrolling\CS