BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
# MainWindow.xaml.cs
public MainWindow()
{
InitializeComponent();
pivotGrid1.Loaded += PivotGrid1_Loaded;
}
private void PivotGrid1_Loaded(object sender, RoutedEventArgs e)
{
pivotGrid1.InternalGrid.Loaded += InternalGrid_Loaded;
}
private void InternalGrid_Loaded(object sender, RoutedEventArgs e)
{
//Here we getting the row count value as 13. int row = this.pivotGrid1.PivotEngine.RowCount;
//Here we getting the column count value as 8.
int column = this.pivotGrid1.PivotEngine.ColumnCount;
}
|