How to select cells or rows or columns in pivot table at code level in WinForms PivotGridControl ?
Selection
In WinForms PivotGridControl supports selecting the range of Cells/Rows/Columns or particular Cell/Row/Column.
Solution
The selections can be defined by using PivotGridControl’s TableModel property. The cells/rows/columns can be selected by giving correct range to the Selection (which cells or range to be selected). The Range for the selections can be provided as GridRangeInfo.
C#
//To Select range of Cells
this.pivotGridControl1.TableModel.Selections.Add(GridRangeInfo.Cell(4, 3));
//To Select range of Column
this.pivotGridControl1.TableModel.Selections.Add(GridRangeInfo.Col(5));
//To Select range of Row
this.pivotGridControl1.TableModel.Selections.Add(GridRangeInfo.Row(9));VB
'To Select range of Cells
Me.pivotGridControl1.TableModel.Selections.Add(GridRangeInfo.Cell(4, 3))
'To Select range of Column
Me.pivotGridControl1.TableModel.Selections.Add(GridRangeInfo.Col(5))
'To Select range of Row
Me.pivotGridControl1.TableModel.Selections.Add(GridRangeInfo.Row(9))Samples:
C#: Selection CS
VB: Selection VB
Conclusion
I
hope you enjoyed learning about how to select cells or rows or columns in pivot
table at code level in the PivotGridControl.
You
can refer to our WinForms
PivotGridControl feature tour page to know about its
other groundbreaking feature representations. You can also explore
our WinForms
PivotGridControl example to understand how to present and manipulate
data.
For
current customers, you can check out our components from
the License and Downloads page. If you are new to Syncfusion, you can try our
30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!