Pivot Table Field List in Windows Forms Pivot Chart
29 Sep 2020 / 1 minute to read
The pivot chart can be dynamically built and customized by choosing any available fields to display and choose whether those fields should be displayed as column, row, value, or filter fields. The PivotTableFieldList also gives flexibility to wire with both pivot chart and pivot grid. This links the pivot chart and pivot grid.
//Synchronizes the PivotChart with the PivotTableFieldList.
this.pivotTableFieldList1.AssociateWith(this.pivotChart1);
//Generates the PivotGrid by using the assigned pivot engine item source.
this.panel.Controls.Add(this.pivotTableFieldList1.PivotGrid);
'Synchronizes the PivotChart with the PivotTableFieldList.
Me.pivotTableFieldList1.AssociateWith(Me.pivotChart1)
'Generates the PivotGrid by using the assigned pivot engine item source.
Me.panel.Controls.Add(Me.pivotTableFieldList1.PivotGrid
Was this page helpful?
Yes
No
Thank you for your feedback!
Thank you for your feedback and comments. We will rectify this as soon as possible!
An unknown error has occurred. Please try again.
Help us improve this page