diff --git a/wpf/Pivot-Grid/Binding-PivotSchemaDesigner-to-PivotGrid.md b/wpf/Pivot-Grid/Binding-PivotSchemaDesigner-to-PivotGrid.md
index c14c9bbe0..deecb98cf 100644
--- a/wpf/Pivot-Grid/Binding-PivotSchemaDesigner-to-PivotGrid.md
+++ b/wpf/Pivot-Grid/Binding-PivotSchemaDesigner-to-PivotGrid.md
@@ -9,7 +9,7 @@ documentation: ug
# Binding PivotSchemaDesigner in WPF Pivot Grid
-The pivot schema designer can be bound to the pivot grid with the help of the `PivotControl` property. After creating a pivot grid, a new pivot schema designer is created using the `PivotSchemaDesigner` class and bound to the pivot grid control using the `PivotControl` property. This can be achieved either in XAML or code-behind.
+The pivot schema designer can be bound to the Pivot Grid with the help of the `PivotControl` property. After creating the control, a new pivot schema designer is created using the `PivotSchemaDesigner` class and bound using the `PivotControl` property. This can be achieved either in XAML or code-behind.
For XAML, refer to the following code sample.
@@ -80,4 +80,4 @@ For code-behind, refer to the following code sample.

-N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
+N> You can refer to our [feature tour](https://www.syncfusion.com/wpf-controls/pivot-grid) page for its groundbreaking feature representations. You can also explore our [example](https://github.com/syncfusion/wpf-demos) to know how to organize and summarize business data and display the result in a cross-table format.
diff --git a/wpf/Pivot-Grid/Column-Filtering.md b/wpf/Pivot-Grid/Column-Filtering.md
index 7b5783385..fe0d929d2 100644
--- a/wpf/Pivot-Grid/Column-Filtering.md
+++ b/wpf/Pivot-Grid/Column-Filtering.md
@@ -21,7 +21,7 @@ Method
It is possible to do filtering operations for pivot calculation during runtime as well as during initial load.
-To do so, define the pivot grid control in RowPivotsOnly mode. Add the respective pivot calculations and set the `AllowFilter` property to "true".
+To do so, define the Pivot Grid in RowPivotsOnly mode. Add the respective pivot calculations and set the `AllowFilter` property to "true".
Create the dictionary using the `Dictionary` class and add the pivot items that are to be filtered. Invoke the `ApplySavedValueFilter()` method for applying the filters.
@@ -50,4 +50,4 @@ Refer to the following code sample.

-N> You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
+N> You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to know how to organize and summarize business data and display the result in a cross-table format.
diff --git a/wpf/Pivot-Grid/Column-Sorting.md b/wpf/Pivot-Grid/Column-Sorting.md
index b495bc955..a697b8aab 100644
--- a/wpf/Pivot-Grid/Column-Sorting.md
+++ b/wpf/Pivot-Grid/Column-Sorting.md
@@ -19,9 +19,9 @@ Method
* **ApplySavedValueSorts**: When RowPivotsOnly is true, this method sorts the pivot based on the information furnished through the arguments.
-## Defining the property in pivot grid
+## Defining the property in the Pivot Grid
-After defining the pivot grid control with pivot rows and pivot calculations, set the `SortOption` property to "All" for sorting all the value columns. Then, set the `AllowSort` property to "true" for the appropriate calculation items.
+After defining the control with pivot rows and pivot calculations, set the `SortOption` property to "All" for sorting all the value columns. Then, set the `AllowSort` property to "true" for the appropriate calculation items.
The `AllowSort` property can be mentioned in XAML or code-behind.
@@ -74,7 +74,7 @@ public partial class MainWindow: Window {
{% endhighlight %}
-## Defining the method in pivot grid
+## Defining the method in the Pivot Grid
After defining the pivot grid control with pivot rows and pivot calculations, set the `SortOption` property to "All" for sorting all the value columns. Then, set the `AllowSort` property to "true" for appropriate calculation items.
diff --git a/wpf/Pivot-Grid/Conditional-Formatting-ColorScales.md b/wpf/Pivot-Grid/Conditional-Formatting-ColorScales.md
index 961f663e2..c8b77c6a2 100644
--- a/wpf/Pivot-Grid/Conditional-Formatting-ColorScales.md
+++ b/wpf/Pivot-Grid/Conditional-Formatting-ColorScales.md
@@ -11,7 +11,7 @@ documentation: ug
Conditional formatting is a process of applying customized styles to any object based on specified conditions. In this scenario, styles are applied in the form of gradient color scales through-out the control.
-It can be defined by using the `PivotGridControl.ColorScaleConditionalFormats`, which is an observable collection of *PivotGridColorScaleConditionalFormat* type. Meanwhile, it can be done in the following ways.
+It can be defined by using the `PivotGridControl.ColorScaleConditionalFormats`, which is an observable collection of *PivotGridColorScaleConditionalFormat* type. It can be done in the following ways.
* Apply format using predefined color scales
* Apply format using custom colors
@@ -110,7 +110,7 @@ public partial class MainWindow: Window {
## Apply format using custom colors
-It can be applied by providing custom colors to the following properties - `StartColor`, `EndColor`, `MiddleColor` in the application. Also, we can apply conditional formatting based on two level of gradient color scales by defining `StartColor` and `EndColor` properties alone. These properties can be defined either in XAML or code-behind.
+It can be applied by providing custom colors to the following properties - `StartColor`, `EndColor`, `MiddleColor` - in the application. Also, conditional formatting based on two levels of gradient color scales can be applied by defining the `StartColor` and `EndColor` properties alone. These properties can be defined either in XAML or code-behind.
For **XAML**, refer to the following code snippet.
@@ -202,7 +202,7 @@ public partial class MainWindow: Window {
## Apply formatting to specific level
-`ApplyToSpecificLevel` property specifies whether to apply conditional formatting to data cells placed at the intersection of specific row and column fields. It can be achieved by defining `RowName` and `ColumnName` properties with appropriate pivot field name.
+The `ApplyToSpecificLevel` property specifies whether to apply conditional formatting to data cells placed at the intersection of specific row and column fields. It can be achieved by defining the `RowName` and `ColumnName` properties with the appropriate pivot field name.
N> To apply conditional formatting to specific level, make sure that `ApplyToAllLevels` property is set to **false**.
@@ -294,4 +294,4 @@ public partial class MainWindow: Window {

-N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
+N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to know how to organize and summarize business data and display the result in a cross-table format.
diff --git a/wpf/Pivot-Grid/Conditional-Formatting.md b/wpf/Pivot-Grid/Conditional-Formatting.md
index 99bdc02dc..f3ae9407c 100644
--- a/wpf/Pivot-Grid/Conditional-Formatting.md
+++ b/wpf/Pivot-Grid/Conditional-Formatting.md
@@ -134,4 +134,4 @@ public partial class MainWindow: Window {

-N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
+N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [example](https://github.com/syncfusion/wpf-demos) to know how to organize and summarize business data and display the result in a cross-table format.
diff --git a/wpf/Pivot-Grid/Context-Menu.md b/wpf/Pivot-Grid/Context-Menu.md
index 231df3b52..dfec410c7 100644
--- a/wpf/Pivot-Grid/Context-Menu.md
+++ b/wpf/Pivot-Grid/Context-Menu.md
@@ -9,18 +9,18 @@ documentation: ug
# Context Menu in WPF Pivot Grid
-The [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) supports the context menu option in RowPivotsOnly mode. Following are the available options.
+The [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) supports the context menu option in RowPivotsOnly mode. The following options are available.
* **Allow Filtering**: Enables or disables filtering in the selected pivot computation column.
* **Allow Sorting**: Enables or disables sorting in the selected pivot computation column.
* **HideValueColumn**: Hides the selected pivot computation column.
* **ClearValueFilters**: Clears the filtered changes in all pivot computation columns.
* **ClearValueSorts**: Clears the sorted values in all pivot computation columns.
-* **ShowPivotValueChooser**: Launches the pivot value chooser window to add or remove the items in pivot grid.
+* **ShowPivotValueChooser**: Launches the pivot value chooser window to add or remove items in the Pivot Grid.
The `EnableContextMenu` property is used to display the context menu by right-clicking each column.
-To do so, after defining the pivot grid control in RowPivotsOnly mode, raise the loaded event of pivot grid. Inside the `PivotGrid_Loaded()` event, set the `EnableContextMenu` property.
+To do so, after defining the control in RowPivotsOnly mode, raise its loaded event. Inside the `PivotGrid_Loaded()` event, set the `EnableContextMenu` property.
{% highlight C# %}
@@ -40,4 +40,4 @@ public partial class MainWindow: Window {

-N> You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
\ No newline at end of file
+N> You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to know how to organize and summarize business data and display the result in a cross-table format.
\ No newline at end of file
diff --git a/wpf/Pivot-Grid/Custom-Calculations.md b/wpf/Pivot-Grid/Custom-Calculations.md
index af2059abd..64f011af7 100644
--- a/wpf/Pivot-Grid/Custom-Calculations.md
+++ b/wpf/Pivot-Grid/Custom-Calculations.md
@@ -99,7 +99,7 @@ public partial class MainWindow: Window {
## Providing expression field calculation for summaries
-To provide a calculated field support to summary cells in the pivot grid and make it behave accordingly when options such as sum, count, maximum, and minimum are provided in summaries, set the calculation type to "Formula" and specify the appropriate formula. Refer to the following code samples and screenshots.
+To provide calculated field support for summary cells in the Pivot Grid and make it behave accordingly when options such as sum, count, maximum, and minimum are provided in summaries, set the calculation type to "Formula" and specify the appropriate formula. Refer to the following code samples and screenshots.
{% highlight xaml %}
@@ -170,4 +170,4 @@ public partial class MainWindow: Window {

-N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
+N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to know how to organize and summarize business data and display the result in a cross-table format.
diff --git a/wpf/Pivot-Grid/Data-Binding.md b/wpf/Pivot-Grid/Data-Binding.md
index 27315b78d..912361860 100644
--- a/wpf/Pivot-Grid/Data-Binding.md
+++ b/wpf/Pivot-Grid/Data-Binding.md
@@ -9,11 +9,11 @@ documentation: ug
# Data Binding in WPF Pivot Grid
-## Binding pivot grid to list
+## Binding the Pivot Grid to a list
-The [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) allows binding a list based collection as its item source. Refer to this topic [Binding a data source to pivot grid control](https://help.syncfusion.com/wpf/pivot-grid/pivotgrid-getting-started#binding-a-datasource-to-pivotgridcontrol) to learn more.
+The [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) allows binding a list based collection as its item source. Refer to this topic [Binding a data source to the control](https://help.syncfusion.com/wpf/pivot-grid/pivotgrid-getting-started#binding-a-datasource-to-pivotgridcontrol) to learn more.
-## Binding pivot grid to data table
+## Binding the Pivot Grid to a data table
The pivot grid allows binding a DataSet from the data table as its item source.
@@ -38,7 +38,7 @@ public static DataView GetOrderDetails() {
{% endhighlight %}
-Then, bind the DataSet as ItemSource to the pivot grid by invoking the appropriate method. It can be done through XAML or code-behind.
+Then, bind the DataSet as ItemSource to the Pivot Grid by invoking the appropriate method. It can be done through XAML or code-behind.
For XAML, refer to the following code sample.
@@ -94,4 +94,4 @@ public partial class MainWindow: Window {
{% endhighlight %}
-N> You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
\ No newline at end of file
+N> You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to know how to organize and summarize business data and display the result in a cross-table format.
\ No newline at end of file
diff --git a/wpf/Pivot-Grid/Defining-Grouping-Bar-properties-for-PivotGr.md b/wpf/Pivot-Grid/Defining-Grouping-Bar-properties-for-PivotGr.md
index eb2ec6614..b1ebaf0bd 100644
--- a/wpf/Pivot-Grid/Defining-Grouping-Bar-properties-for-PivotGr.md
+++ b/wpf/Pivot-Grid/Defining-Grouping-Bar-properties-for-PivotGr.md
@@ -27,13 +27,13 @@ The following are the properties available in the grouping bar.
* **AllowRemove**: Gets or sets whether deleting the items is enabled in the grouping bar.
* **AllowMultiFunctionalSortFilter**: Gets or sets whether Microsoft Excel like filtering on the grouping bar is enabled.
-**Using the properties in pivot grid:**
+**Using the properties in Pivot Grid:**
**Background**
You can customize the background color of the grouping bar by defining the color in its `Background` property after the grouping bar is loaded.
-Include the *System.Windows.Media* namespace in the MainWindow.xaml.cs file. After defining the pivot grid control, raise the loaded event of pivot grid. Inside the `PivotGrid_Loaded()` event, raise the loaded event for grouping bar. Inside the `GroupingBar_Loaded()` event, set the value for `Background` property of the grouping bar.
+Include the *System.Windows.Media* namespace in the MainWindow.xaml.cs file. After defining the Pivot Grid control, raise the loaded event of the control. Inside the `PivotGrid_Loaded()` event, raise the loaded event for grouping bar. Inside the `GroupingBar_Loaded()` event, set the value for `Background` property of the grouping bar.
{% highlight C# %}
@@ -89,7 +89,7 @@ public partial class MainWindow: Window {
You can customize the background color of the grouping bar items by defining the color for `ItemsBackground` property after the grouping bar is loaded.
-Include the *System.Windows.Media* namespace in the MainWindow.xaml.cs file. After defining the pivot grid control, raise the loaded event of the pivot grid. Inside the `PivotGrid_Loaded()` event, raise the loaded event for grouping bar. Inside the `GroupingBar_Loaded()` event, set the value for the `ItemsBackground` property.
+Include the *System.Windows.Media* namespace in the MainWindow.xaml.cs file. After defining the Pivot Grid control, raise the loaded event of the control. Inside the `PivotGrid_Loaded()` event, raise the loaded event for grouping bar. Inside the `GroupingBar_Loaded()` event, set the value for the `ItemsBackground` property.
{% highlight C# %}
@@ -143,9 +143,9 @@ public partial class MainWindow: Window {
**AllowFiltering**
-You can show or hide the filtering option in the pivot grid by setting the `AllowFiltering` property.
+You can show or hide the filtering option in Pivot Grid by setting the `AllowFiltering` property.
-To do so, define the pivot grid control and raise the loaded event of pivot grid. Inside the `PivotGrid_Loaded()` event, raise the loaded event for grouping bar. Inside the `GroupingBar_Loaded()` event, set a value for the `AllowFiltering` property of the grouping bar.
+To do so, define the control and raise its loaded event. Inside the `PivotGrid_Loaded()` event, raise the loaded event for grouping bar. Inside the `GroupingBar_Loaded()` event, set a value for the `AllowFiltering` property of the grouping bar.
{% highlight C# %}
@@ -195,15 +195,15 @@ public partial class MainWindow: Window {
{% endhighlight %}
-The following screenshot shows the pivot grid without the filtering icons.
+The following screenshot shows the Pivot Grid without the filtering icons.

**AllowSorting**
-You can show or hide the sorting indicator in pivot grid by setting the `AllowSorting` property.
+You can show or hide the sorting indicator in Pivot Grid by setting the `AllowSorting` property.
-To do so, define the pivot grid control and raise the loaded event of pivot grid. Inside the `PivotGrid_Loaded()` event, raise the loaded event for grouping bar. Inside the `GroupingBar_Loaded()` event, set the value for `AllowSorting` property of the grouping bar.
+To do so, define the control and raise its loaded event. Inside the `PivotGrid_Loaded()` event, raise the loaded event for grouping bar. Inside the `GroupingBar_Loaded()` event, set the value for `AllowSorting` property of the grouping bar.
{% highlight C# %}
@@ -253,15 +253,15 @@ public partial class MainWindow: Window {
{% endhighlight %}
-The following screenshots shows the pivot grid without the sorting icons.
+The following screenshots shows the Pivot Grid without the sorting icons.

**AllowRemove**
-You can show or hide the remove icon in pivot grid by setting the `AllowRemove` property.
+You can show or hide the remove icon in Pivot Grid by setting the `AllowRemove` property.
-To do so, define the pivot grid control and raise the loaded event of pivot grid. Inside the `PivotGrid_Loaded()` event, raise the loaded event for grouping bar. Inside the `GroupingBar_Loaded()` event, set a value for the `AllowRemove` property of the grouping bar.
+To do so, define the control and raise its loaded event. Inside the `PivotGrid_Loaded()` event, raise the loaded event for grouping bar. Inside the `GroupingBar_Loaded()` event, set a value for the `AllowRemove` property of the grouping bar.
{% highlight C# %}
@@ -311,8 +311,8 @@ public partial class MainWindow: Window {
{% endhighlight %}
-The following screenshot shows the pivot grid with remove, filter, and sort icons.
+The following screenshot shows the Pivot Grid with remove, filter, and sort icons.

-N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
+N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to learn how the control organizes and summarizes business data and displays the result in a cross-table format.
diff --git a/wpf/Pivot-Grid/Defining-RowPivotsOnly-Mode-for-PivotGridCont.md b/wpf/Pivot-Grid/Defining-RowPivotsOnly-Mode-for-PivotGridCont.md
index 35b866e82..1155f7fa7 100644
--- a/wpf/Pivot-Grid/Defining-RowPivotsOnly-Mode-for-PivotGridCont.md
+++ b/wpf/Pivot-Grid/Defining-RowPivotsOnly-Mode-for-PivotGridCont.md
@@ -9,9 +9,9 @@ documentation: ug
# RowPivotsOnly Mode in WPF Pivot Grid
-RowPivotsOnly mode allows the pivot grid to display only the column values.
+RowPivotsOnly mode allows Pivot Grid to display only the column values.
-When displaying the pivot grid in RowPivotsOnly mode, it shows the row header cells and column header cells as value cells. Also, it supports column filtering, column sorting, and so on.
+When the control is displayed in RowPivotsOnly mode, it shows the row header cells and column header cells as value cells. Also, it supports column filtering, column sorting, and so on.
The `RowPivotsOnly` property is used to achieve this and it can be mentioned in XAML or code-behind.
@@ -55,6 +55,6 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
-N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
\ No newline at end of file
+N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to learn how the control organizes and summarizes business data and displays the result in a cross-table format.
\ No newline at end of file
diff --git a/wpf/Pivot-Grid/Disable-GroupingBar-by-Specific-Area.md b/wpf/Pivot-Grid/Disable-GroupingBar-by-Specific-Area.md
index 4641f5147..c8f8b1ddc 100644
--- a/wpf/Pivot-Grid/Disable-GroupingBar-by-Specific-Area.md
+++ b/wpf/Pivot-Grid/Disable-GroupingBar-by-Specific-Area.md
@@ -9,7 +9,7 @@ documentation: ug
# Visibility of Grouping Bar in WPF Pivot Grid
-The pivot grid supports defining the visibility of grouping bar to some specific areas as mentioned below.
+The Pivot Grid supports defining the visibility of the grouping bar to some specific areas as mentioned below.
* Row header area.
* Column header area along with row header area.
@@ -160,4 +160,4 @@ public partial class MainWindow: Window {

-N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
+N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to learn how the control organizes and summarizes business data and displays the result in a cross-table format.
diff --git a/wpf/Pivot-Grid/Display-Options.md b/wpf/Pivot-Grid/Display-Options.md
index f0ba1de1c..d0fe97ab6 100644
--- a/wpf/Pivot-Grid/Display-Options.md
+++ b/wpf/Pivot-Grid/Display-Options.md
@@ -9,7 +9,7 @@ documentation: ug
# Display Options in WPF Pivot Grid
-The [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) control provides support for the PivotComputationInfo to display calculation values in preferred areas of the pivot grid using the `DisplayOption` property.
+The [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) control provides support for the PivotComputationInfo to display calculation values in preferred areas of the control using the `DisplayOption` property.
For XAML, refer to the following code sample.
@@ -79,19 +79,19 @@ public partial class MainWindow: Window {
**All**
-Displays the calculation values in all columns of the pivot grid.
+Displays the calculation values in all columns of the Pivot Grid.

**Summary**
-Data actually presents in the PivotEngine, but displays the calculation values only in the summary columns of the pivot grid.
+Data actually presents in the PivotEngine, but displays the calculation values only in the summary columns of the Pivot Grid.

**Calculations**
-Data actually presents in the PivotEngine, but displays the calculation values only in the calculation columns and does not display in the summary and grand total columns of the pivot grid.
+Data actually presents in the PivotEngine, but displays the calculation values only in the calculation columns and does not display in the summary and grand total columns of the control.

@@ -103,7 +103,7 @@ Data actually presents in the PivotEngine, but displays the calculation values o
**None**
-Data actually presents in the PivotEngine, but hides all the calculation values in all columns of the pivot grid.
+Data actually presents in the PivotEngine, but hides all the calculation values in all columns of the Pivot Grid.

diff --git a/wpf/Pivot-Grid/Editing.md b/wpf/Pivot-Grid/Editing.md
index e048b97f1..c6b780966 100644
--- a/wpf/Pivot-Grid/Editing.md
+++ b/wpf/Pivot-Grid/Editing.md
@@ -13,7 +13,7 @@ The [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) support
## Enable editing for value cells
-The `EnableValueEditing` property of the pivot grid control is used to edit the value cells and it can be mentioned in XAML or code-behind.
+The `EnableValueEditing` property of the Pivot Grid control is used to edit the value cells and it can be mentioned in XAML or code-behind.
For XAML, refer to the following code sample.
@@ -83,7 +83,7 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
## Enable editing for total cells
@@ -136,13 +136,13 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
## Custom editing manager
-After editing the value, you can further customize the value using the custom editing manager, which is used to format the PivotCellInfo in the pivot grid.
+After editing the value, you can further customize the value using the custom editing manager, which is used to format the PivotCellInfo in the Pivot Grid.
-To do so, create a class named `CustomEditManager` as illustrated in the following code snippet. Dispose the existing edit manager and set the created custom edit manager to the pivot grid by using the edit manager.
+To do so, create a class named `CustomEditManager` as illustrated in the following code snippet. Dispose the existing edit manager and set the created custom edit manager to the control by using the edit manager.
{% highlight C# %}
@@ -200,6 +200,6 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
N> You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
\ No newline at end of file
diff --git a/wpf/Pivot-Grid/Excel-Like-Filtering.md b/wpf/Pivot-Grid/Excel-Like-Filtering.md
index deaf7ebb0..9f0ad7255 100644
--- a/wpf/Pivot-Grid/Excel-Like-Filtering.md
+++ b/wpf/Pivot-Grid/Excel-Like-Filtering.md
@@ -11,7 +11,7 @@ documentation: ug
The [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) control provides Excel-like sorting and filtering features applied to a pivot item. You can enable or disable the Excel-like sorting and filtering pop-up in the pivot grid by setting the `AllowMultiFunctionalSortFilter` property of grouping bar in the pivot grid control.
-To do so, define the pivot grid control and raise the loaded event for pivot grid. Inside the `PivotGrid_Loaded()` event, raise the loaded event for the grouping bar. Inside the `GroupingBar_Loaded()` event, set the value of the `AllowMultiFunctionalSortFilter` property to "true".
+To do so, define the Pivot Grid control and raise its loaded event. Inside the `PivotGrid_Loaded()` event, raise the loaded event for the grouping bar. Inside the `GroupingBar_Loaded()` event, set the value of the `AllowMultiFunctionalSortFilter` property to "true".
Refer to the following code sample.
@@ -77,11 +77,11 @@ It can be used to sort the corresponding pivot item in the descending order.
**Clear filters**
-The clear filters are used to clear all filter changes applied to the corresponding pivot item and bring back the pivot grid to the normal state.
+The clear filters are used to clear all filter changes applied to the corresponding pivot item and bring the Pivot Grid back to its normal state.
**Label filters**
-The label filters are used to filter the pivot item filter labels of the pivot grid by using the following various options.
+The label filters are used to filter the labels of the corresponding pivot item in the Pivot Grid by using the following options.
* Equals
* Does not equals
@@ -120,8 +120,8 @@ The value filters are used to filter the pivot item field values of the pivot gr
_Value Filter window for filtering "Alberta" using its Quantity value "677" in State_
-
+
-_PivotGrid with Label Filter or Value Filter applied_
+_Pivot Grid with Label Filter or Value Filter applied_
N> You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
\ No newline at end of file
diff --git a/wpf/Pivot-Grid/Exporting.md b/wpf/Pivot-Grid/Exporting.md
index 12ab3ae0a..c58c3e795 100644
--- a/wpf/Pivot-Grid/Exporting.md
+++ b/wpf/Pivot-Grid/Exporting.md
@@ -18,14 +18,14 @@ The [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) provide
## Export to Excel
-The pivot grid can be exported to an Excel document using Syncfusion® XlsIO libraries. It consists of two exporting modes, and you can switch from one mode to another mode using the `ExportMode` property.
+The Pivot Grid can be exported to an Excel document using Syncfusion® XlsIO libraries. It consists of two exporting modes, and you can switch from one mode to another using the `ExportMode` property.
-* **Pivot Table**: Exports the pivot grid directly as a pivot table like in Microsoft Excel.
-* **Cell**: Exports the pivot grid as individual cell values.
+* **Pivot Table**: Exports the control directly as a pivot table, as in Microsoft Excel.
+* **Cell**: Exports the control as individual cell values.
-To export the pivot grid contents to Excel, add **Syncfusion.PivotGridConverter.Wpf.dll** and **Syncfusion.XlsIO.Base** assemblies to your application and include the namespace **Syncfusion.Windows.Controls.PivotGrid.Converter** to access the `GridExcelExport` class.
+To export the Pivot Grid contents to Excel, add **Syncfusion.PivotGridConverter.Wpf.dll** and **Syncfusion.XlsIO.Base** assemblies to your application and include the namespace **Syncfusion.Windows.Controls.PivotGrid.Converter** to access the `GridExcelExport` class.
-Now, define the pivot grid control and bind the data source along with pivot rows, pivot columns, and pivot calculations. Create an instance of `GridExcelExport` class and then invoke the `Export` method in it. `OpenFileDialog` and `SaveFileDialog` options are used to save the exported file in the preferred location.
+Now, define the control and bind the data source along with pivot rows, pivot columns, and pivot calculations. Create an instance of `GridExcelExport` class and then invoke the `Export` method in it. `OpenFileDialog` and `SaveFileDialog` options are used to save the exported file in the preferred location.
Refer to the following code sample.
@@ -60,9 +60,9 @@ Excel Export in Cell Mode
## Export to Word
-To export the pivot grid contents to Word, add the **Syncfusion.PivotGridConverter.Wpf.dll** assembly to your application and include the namespace **Syncfusion.Windows.Controls.PivotGrid.Converter** to access the `GridWordExport` class.
+To export the Pivot Grid contents to Word, add the **Syncfusion.PivotGridConverter.Wpf.dll** assembly to your application and include the namespace **Syncfusion.Windows.Controls.PivotGrid.Converter** to access the `GridWordExport` class.
-Now, define the pivot grid control and bind the data source along with pivot rows, pivot columns, and pivot calculations. Create an instance for `GridWordExport` class and then invoke the `Export` method in it. `OpenFileDialog` and `SaveFileDialog` options are used to save the exported file in the preferred location.
+Now, define the control and bind the data source along with pivot rows, pivot columns, and pivot calculations. Create an instance for `GridWordExport` class and then invoke the `Export` method in it. `OpenFileDialog` and `SaveFileDialog` options are used to save the exported file in the preferred location.
Refer to the following code sample.
@@ -84,13 +84,13 @@ private void Button_Export(object sender, RoutedEventArgs e)) {
{% endhighlight %}
-
+
## Export to PDF
-To export the pivot grid contents to PDF, add **Syncfusion.PivotGridConverter.Wpf.dll** assembly to your application and include the namespace **Syncfusion.Windows.Controls.PivotGrid.Converter** to access the `GridPdfExport` class.
+To export the Pivot Grid contents to PDF, add **Syncfusion.PivotGridConverter.Wpf.dll** assembly to your application and include the namespace **Syncfusion.Windows.Controls.PivotGrid.Converter** to access the `GridPdfExport` class.
-Now, define the pivot grid control and bind the data source along with pivot rows, pivot columns, and pivot calculations. Create an instance for `GridPdfExport` class and then, invoke the `Export` method in it. `OpenFileDialog` and `SaveFileDialog` options are used to save the exported file in the preferred location.
+Now, define the control and bind the data source along with pivot rows, pivot columns, and pivot calculations. Create an instance for `GridPdfExport` class and then invoke the `Export` method in it. `OpenFileDialog` and `SaveFileDialog` options are used to save the exported file in the preferred location.
Refer to the following code sample.
@@ -112,13 +112,13 @@ private void Button_Export(object sender, RoutedEventArgs e)) {
{% endhighlight %}
-
+
## Export to CSV
-To export the pivot grid contents to CSV, add the **Syncfusion.PivotGridConverter.Wpf.dll** assembly to your application and include the namespace **Syncfusion.Windows.Controls.PivotGrid.Converter** to access the `GridCsvExport` class.
+To export the Pivot Grid contents to CSV, add the **Syncfusion.PivotGridConverter.Wpf.dll** assembly to your application and include the namespace **Syncfusion.Windows.Controls.PivotGrid.Converter** to access the `GridCsvExport` class.
-Now, define the pivot grid control and bind the data source along with pivot rows, pivot columns, and pivot calculations. Create an instance of `GridCsvExport` class and then invoke the `Export` method in it. `OpenFileDialog` and `SaveFileDialog` options are used to save the exported file in the preferred location.
+Now, define the control and bind the data source along with pivot rows, pivot columns, and pivot calculations. Create an instance of `GridCsvExport` class and then invoke the `Export` method in it. `OpenFileDialog` and `SaveFileDialog` options are used to save the exported file in the preferred location.
Refer to the following code sample.
@@ -141,11 +141,11 @@ private void Button_Export(object sender, RoutedEventArgs e)) {
{% endhighlight %}
-
+
## Threshold limitations
-The following table represents the number of rows and columns to be taken in account while exporting the pivot grid control without affecting its performance.
+The following table represents the number of rows and columns to be taken into account while exporting the Pivot Grid control without affecting its performance.
diff --git a/wpf/Pivot-Grid/Expression-Fields.md b/wpf/Pivot-Grid/Expression-Fields.md
index 961d8ab31..95eee3805 100644
--- a/wpf/Pivot-Grid/Expression-Fields.md
+++ b/wpf/Pivot-Grid/Expression-Fields.md
@@ -11,7 +11,7 @@ documentation: ug
The [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) supports adding expression fields and handles other features similar to normal fields. You can add new expression field information by using the `AllowedFields` class in the pivot grid control and you can use the following property to load the allowed fields in the pivot grid:
-* **LoadWithDefaultPropertyFields**: Gets or sets a value indicating whether the pivot grid control loads with default property fields for expression support.
+* **LoadWithDefaultPropertyFields**: Gets or sets a value indicating whether the control loads with default property fields for expression support.
This property can be defined either in XAML or code-behind. For XAML, refer to the following code sample.
@@ -82,7 +82,7 @@ public partial class MainWindow: Window {
## Creating the expression fields
-`FieldInfo` class is used to create the expression fields that are added to the `AllowedFields` collection of pivot grid control. This can be done either in XAML or code-behind.
+`FieldInfo` class is used to create the expression fields that are added to the `AllowedFields` collection of the Pivot Grid control. This can be done either in XAML or code-behind.
For XAML, refer to the following code sample.
@@ -162,6 +162,6 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
N> You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
diff --git a/wpf/Pivot-Grid/Freeze-Headers.md b/wpf/Pivot-Grid/Freeze-Headers.md
index 77d8522bf..0df45509b 100644
--- a/wpf/Pivot-Grid/Freeze-Headers.md
+++ b/wpf/Pivot-Grid/Freeze-Headers.md
@@ -11,7 +11,7 @@ documentation: ug
The [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) provides built-in support for freezing column and row headers for better viewing of value cells.
-The `FreezeHeaders` property in the pivot grid control is used to achieve the same. This can be mentioned either in XAML or code-behind.
+The `FreezeHeaders` property in the Pivot Grid control is used to achieve the same. This can be mentioned either in XAML or code-behind.
For XAML, refer to the following code sample.
@@ -80,11 +80,11 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
_PivotGrid when freeze headers enabled_
-
+
_PivotGrid when freeze headers disabled_
diff --git a/wpf/Pivot-Grid/GetRawItem.md b/wpf/Pivot-Grid/GetRawItem.md
index 027654699..6cec61179 100644
--- a/wpf/Pivot-Grid/GetRawItem.md
+++ b/wpf/Pivot-Grid/GetRawItem.md
@@ -9,9 +9,9 @@ documentation: ug
# GetRawItem in WPF Pivot Grid
-GetRawItemFor method is used to obtain the list of raw items for value cell, total cell, or grand total cell in the pivot grid.
+GetRawItemFor method is used to obtain the list of raw items for value cell, total cell, or grand total cell in the Pivot Grid.
-To achieve this, define the pivot grid control and enable the hyperlink option of the value and summary cells using the `IsHyperlinkCell` property. Then, invoke the hyperlink cell click event and call the `GetRawItemFor` method as illustrated in the following code snippet.
+To achieve this, define the control and enable the hyperlink option of the value and summary cells using the `IsHyperlinkCell` property. Then, invoke the hyperlink cell click event and call the `GetRawItemFor` method as illustrated in the following code snippet.
{% highlight C# %}
diff --git a/wpf/Pivot-Grid/Grid-Layout.md b/wpf/Pivot-Grid/Grid-Layout.md
index 2a078ec6c..1644c3242 100644
--- a/wpf/Pivot-Grid/Grid-Layout.md
+++ b/wpf/Pivot-Grid/Grid-Layout.md
@@ -9,7 +9,7 @@ documentation: ug
# Grid Layout in WPF Pivot Grid
-The pivot grid supports for two different types of layout options with respect to summaries. That is, whether to display the summary data of each pivot item at the top or at the bottom of value cells.
+The Pivot Grid supports two different types of layout options with respect to summaries. That is, whether to display the summary data of each pivot item at the top or at the bottom of value cells.
The `GridLayout` property is used to set the layout options, and this can be defined in both XAML and code-behind.
@@ -85,18 +85,18 @@ public partial class MainWindow: Window {
Displays the summary data of rows or columns at the end of value cells.
-
+
**Top summary**
Displays the summary data of rows or columns at the beginning of value cells.
-
+
**Excel-like layout**
Displays the summary cells at the bottom alone and child members that appear below the parent member with some indent space.
-
+
N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
\ No newline at end of file
diff --git a/wpf/Pivot-Grid/Grouping-Bar-Context-Menu.md b/wpf/Pivot-Grid/Grouping-Bar-Context-Menu.md
index 7fc8026a5..1ecdff02b 100644
--- a/wpf/Pivot-Grid/Grouping-Bar-Context-Menu.md
+++ b/wpf/Pivot-Grid/Grouping-Bar-Context-Menu.md
@@ -12,7 +12,7 @@ documentation: ug
The grouping bar context menu consists of the following menu items:
* **Reload Data**: Refreshes the grid with the current item source.
-* **Show Field List**: Launches the pivot grid field list.
+* **Show Field List**: Launches the Pivot Grid field list.
* **Order**: Changes the position of the item present in the grouping bar. It contains the following submenu items:
* Move to Beginning: Moves the current item to the first position.
@@ -26,7 +26,7 @@ The grouping bar context menu consists of the following menu items:
By default, the context menu is enabled in all areas of the grouping bar. The `DisableContextMenu` property should be set individually for row, column, and data header area in the grouping bar to alter their visibility.
-After defining the pivot grid control, raise the loaded event for the pivot grid. Inside the `PivotGrid_Loaded()` event, raise the loaded event for the grouping bar. Inside the `GroupingBar_Loaded()` event, set the value for the `DisableContextMenu` property.
+After defining the Pivot Grid control, raise the loaded event for the control. Inside the `PivotGrid_Loaded()` event, raise the loaded event for the grouping bar. Inside the `GroupingBar_Loaded()` event, set the value for the `DisableContextMenu` property.
Refer to the following code sample.
diff --git a/wpf/Pivot-Grid/Grouping-Bar.md b/wpf/Pivot-Grid/Grouping-Bar.md
index eda9a60e9..d63397745 100644
--- a/wpf/Pivot-Grid/Grouping-Bar.md
+++ b/wpf/Pivot-Grid/Grouping-Bar.md
@@ -9,14 +9,14 @@ documentation: ug
# Grouping Bar in WPF Pivot Grid
-Grouping bar allows you to slice and dice the fields between column, row, value, and filter. This allows you to add, rearrange, or remove the fields to show data in the pivot grid as desired. It consists of the following areas:
+Grouping bar allows you to slice and dice the fields between column, row, value, and filter. This allows you to add, rearrange, or remove the fields to show data in the Pivot Grid as desired. It consists of the following areas:
-* Filter header area: Holds the filter items of the pivot grid control.
-* Data header area: Holds the pivot calculation items of the pivot grid control.
-* Column header area: Holds the pivot column items of the pivot grid control.
-* Row header area: Holds the pivot row items of the pivot grid control.
+* Filter header area: Holds the filter items of the control.
+* Data header area: Holds the pivot calculation items of the control.
+* Column header area: Holds the pivot column items of the control.
+* Row header area: Holds the pivot row items of the control.
-By default, the grouping bar is enabled in the pivot grid control. You can show or hide it by using the `ShowGroupingBar` property. It can be done both in XAML and code-behind.
+By default, the grouping bar is enabled in the control. You can show or hide it by using the `ShowGroupingBar` property. It can be done both in XAML and code-behind.
For XAML, refer to the following code sample.
@@ -56,11 +56,11 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
_PivotGrid with Grouping Bar_
-
+
_PivotGrid without Grouping Bar_
diff --git a/wpf/Pivot-Grid/Header-Cell-Context-Menu.md b/wpf/Pivot-Grid/Header-Cell-Context-Menu.md
index b9f94fe22..a321e6d4c 100644
--- a/wpf/Pivot-Grid/Header-Cell-Context-Menu.md
+++ b/wpf/Pivot-Grid/Header-Cell-Context-Menu.md
@@ -17,7 +17,7 @@ The header cell context menu will be shown while right-clicking the expander cel
**EnableContextMenu** property allows you to enable or disable the context menu for row or column headers individually.
-To do so, define the pivot grid control and raise the loaded event for the pivot grid. Inside the `PivotGrid_Loaded()` event, set the visibility of `EnableContextMenu` of each row and column header areas.
+To do so, define the Pivot Grid control and raise its loaded event. Inside the `PivotGrid_Loaded()` event, set the visibility of `EnableContextMenu` on each row and column header area.
Refer to the following code sample.
@@ -141,7 +141,7 @@ You can expand/collapse any number of rows or columns, programmatically. This ca
To expand/collapse operations in code behind programmatically, use the previously mentioned methods as needed. By passing the unique text as a parameter, you can expand/collapse one or more columns/rows as desired.
-To do so, define the pivot grid control and raise the loaded event for pivot grid. Inside the `PivotGrid_Loaded()` event, use the appropriate methods for expand/collapse operations.
+To do so, define the Pivot Grid control and raise its loaded event. Inside the `PivotGrid_Loaded()` event, use the appropriate methods for expand/collapse operations.
Refer to the following code sample.
diff --git a/wpf/Pivot-Grid/Hiding-Sub-Totals.md b/wpf/Pivot-Grid/Hiding-Sub-Totals.md
index 4a73c8fad..6570e8ec8 100644
--- a/wpf/Pivot-Grid/Hiding-Sub-Totals.md
+++ b/wpf/Pivot-Grid/Hiding-Sub-Totals.md
@@ -9,7 +9,7 @@ documentation: ug
# Show/Hide Sub-Totals in WPF Pivot Grid
-The subtotal hiding feature is used to show or hide subtotals in the pivot grid. It provides an abstract view of data as desired and provides the following levels of hiding.
+The subtotal hiding feature is used to show or hide subtotals in the Pivot Grid. It provides an abstract view of data as desired and provides the following levels of hiding.
* Hiding all the subtotals.
* Hiding only the row subtotals.
@@ -87,7 +87,7 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
## Hiding only the row subtotals
@@ -160,7 +160,7 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
## Hiding only the column subtotals
@@ -233,7 +233,7 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
## Hiding the subtotals for the specific pivot item
@@ -304,6 +304,6 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
diff --git a/wpf/Pivot-Grid/How-To/Change-the-Gridline-Color-and-Thickness.md b/wpf/Pivot-Grid/How-To/Change-the-Gridline-Color-and-Thickness.md
index 05664a951..e86417f7d 100644
--- a/wpf/Pivot-Grid/How-To/Change-the-Gridline-Color-and-Thickness.md
+++ b/wpf/Pivot-Grid/How-To/Change-the-Gridline-Color-and-Thickness.md
@@ -9,7 +9,7 @@ documentation: ug
# How to Change GridLine Color and Thickness in WPF Pivot Grid
-The color and thickness of the grid lines can be modified using the `GridLineStroke` property of the PivotGridControl and the `BorderThickness` property of PivotGridCellStyle.
+The color and thickness of the grid lines can be modified using the `GridLineStroke` property of the Pivot GridControl and the `BorderThickness` property of Pivot GridCellStyle.
If through *XAML*, please refer the below code sample.
diff --git a/wpf/Pivot-Grid/How-To/Customize-the-Appearance-of-Expanders-in-a-Gri.md b/wpf/Pivot-Grid/How-To/Customize-the-Appearance-of-Expanders-in-a-Gri.md
index c762beda8..7e5a8278a 100644
--- a/wpf/Pivot-Grid/How-To/Customize-the-Appearance-of-Expanders-in-a-Gri.md
+++ b/wpf/Pivot-Grid/How-To/Customize-the-Appearance-of-Expanders-in-a-Gri.md
@@ -9,9 +9,9 @@ documentation: ug
# How to Customize Expanders Appearance in WPF Pivot Grid
-Define your own style for the expander and assign that style to the `ExpanderStyle` property of the PivotGrid control.
+Define your own style for the expander and assign that style to the `ExpanderStyle` property of the Pivot Grid control.
-Please refer the below code sample. Here we have defined our own style for expander and assigned it to the `ExpanderStyle` property of the PivotGrid control.
+Please refer the below code sample. Here we have defined our own style for expander and assigned it to the `ExpanderStyle` property of the Pivot Grid control.
{}
diff --git a/wpf/Pivot-Grid/How-To/Display-the-Count-of-Records-which-are-Current.md b/wpf/Pivot-Grid/How-To/Display-the-Count-of-Records-which-are-Current.md
index 2beb4a705..7fd88dec2 100644
--- a/wpf/Pivot-Grid/How-To/Display-the-Count-of-Records-which-are-Current.md
+++ b/wpf/Pivot-Grid/How-To/Display-the-Count-of-Records-which-are-Current.md
@@ -9,9 +9,9 @@ documentation: ug
# How to Get Count of Visible Records in WPF Pivot Grid
-It is possible to get the count of records which are currently visible in PivotGrid by using `VisibleRecords` property.
+It is possible to get the count of records which are currently visible in Pivot Grid by using `VisibleRecords` property.
-After defining the PivotGrid control, raise its loaded event. Inside the `pivotGrid_Loaded` event, you can get the list of `VisibleRecords` from the PivotEngine and store it as a separate collection.
+After defining the Pivot Grid control, raise its loaded event. Inside the `pivotGrid_Loaded` event, you can get the list of `VisibleRecords` from the PivotEngine and store it as a separate collection.
Please refer the below code sample.
diff --git a/wpf/Pivot-Grid/How-To/Expand-and-Collapse-all-Groups-in-a-Grid.md b/wpf/Pivot-Grid/How-To/Expand-and-Collapse-all-Groups-in-a-Grid.md
index 6fdeb8764..66b8bebcc 100644
--- a/wpf/Pivot-Grid/How-To/Expand-and-Collapse-all-Groups-in-a-Grid.md
+++ b/wpf/Pivot-Grid/How-To/Expand-and-Collapse-all-Groups-in-a-Grid.md
@@ -8,9 +8,9 @@ documentation: ug
---
# How to Expand and Collapse Entire Groups in WPF Pivot Grid
-## Expanding entire group in PivotGrid
+## Expanding entire group in Pivot Grid
-After defining PivotGrid control, invoke the method `ExpandAllGroup()` to expand entire group in the PivotGrid control.
+After defining Pivot Grid control, invoke the method `ExpandAllGroup()` to expand entire group in the Pivot Grid control.
Please refer the below code sample.
@@ -19,14 +19,14 @@ Please refer the below code sample.
public MainWindow()
{
InitializeComponent();
- //To expand entire group in PivotGrid
+ //To expand entire group in Pivot Grid
pivotGrid.ExpandAllGroup();
}
{% endhighlight %}
-## Collapsing entire group in PivotGrid
+## Collapsing entire group in Pivot Grid
-After defining PivotGrid control, invoke the method `CollapseAllGroup()` to collapse entire group in the PivotGrid control.
+After defining Pivot Grid control, invoke the method `CollapseAllGroup()` to collapse entire group in the Pivot Grid control.
Please refer the below code sample.
@@ -35,7 +35,7 @@ Please refer the below code sample.
public MainWindow()
{
InitializeComponent();
- //To collapse entire group in PivotGrid
+ //To collapse entire group in Pivot Grid
pivotGrid.CollapseAllGroup();
}
diff --git a/wpf/Pivot-Grid/How-To/Hide-the-Grand-Totals-Present-in-the-PivotGrid.md b/wpf/Pivot-Grid/How-To/Hide-the-Grand-Totals-Present-in-the-PivotGrid.md
index 1545fb5c4..6ca3b0b07 100644
--- a/wpf/Pivot-Grid/How-To/Hide-the-Grand-Totals-Present-in-the-PivotGrid.md
+++ b/wpf/Pivot-Grid/How-To/Hide-the-Grand-Totals-Present-in-the-PivotGrid.md
@@ -9,7 +9,7 @@ documentation: ug
# How to Hide Grand Totals in WPF Pivot Grid
-It can be achieved by setting the property `ShowGrandTotals` to false. By default, PivotGrid displays Grand Total for both column and row headers.
+It can be achieved by setting the property `ShowGrandTotals` to false. By default, Pivot Grid displays Grand Total for both column and row headers.
It can be mentioned either in *XAML* or in *Code-Behind*.
If through *XAML*, please refer the below code sample.
diff --git a/wpf/Pivot-Grid/How-To/Improve-Loading-and-Scrolling-Performance-in-P.md b/wpf/Pivot-Grid/How-To/Improve-Loading-and-Scrolling-Performance-in-P.md
index 16de1e73e..226b0af9b 100644
--- a/wpf/Pivot-Grid/How-To/Improve-Loading-and-Scrolling-Performance-in-P.md
+++ b/wpf/Pivot-Grid/How-To/Improve-Loading-and-Scrolling-Performance-in-P.md
@@ -9,7 +9,7 @@ documentation: ug
# How to Improve Loading and Scrolling Performance in WPF Pivot Grid
-The performance of the PivotGrid control can be improved by enabling the on-demand calculation on the value cells and by disabling the auto-sizing option. This refreshes the calculation only while loading or scrolling the PivotGrid control. This can be achieved by using `EnableOnDemandCalculations` and `AutoSizeOption` properties of PivotGrid control.
+The performance of the Pivot Grid control can be improved by enabling the on-demand calculation on the value cells and by disabling the auto-sizing option. This refreshes the calculation only while loading or scrolling the Pivot Grid control. This can be achieved by using `EnableOnDemandCalculations` and `AutoSizeOption` properties of Pivot Grid control.
Please refer the below code snippet.
diff --git a/wpf/Pivot-Grid/How-To/Load-an-existing-PivotEngine-into-a-PivotGrid.md b/wpf/Pivot-Grid/How-To/Load-an-existing-PivotEngine-into-a-PivotGrid.md
index bf5871099..ecd8f886d 100644
--- a/wpf/Pivot-Grid/How-To/Load-an-existing-PivotEngine-into-a-PivotGrid.md
+++ b/wpf/Pivot-Grid/How-To/Load-an-existing-PivotEngine-into-a-PivotGrid.md
@@ -9,7 +9,7 @@ documentation: ug
# How to Load an Existing PivotEngine into WPF Pivot Grid
-After defining the PivotGrid control, set the property `IsExternalEngine` as true. Now create a new PivotEngine using `PivotEngine` class and assign it to your PivotGrid control's PivotEngine.
+After defining the Pivot Grid control, set the property `IsExternalEngine` as true. Now create a new PivotEngine using `PivotEngine` class and assign it to your Pivot Grid control's PivotEngine.
Please refer the below code sample.
diff --git a/wpf/Pivot-Grid/How-To/Resizing-columns-and-rows-in-Pivotgrid.md b/wpf/Pivot-Grid/How-To/Resizing-columns-and-rows-in-Pivotgrid.md
index 8a2e00cac..784e541a2 100644
--- a/wpf/Pivot-Grid/How-To/Resizing-columns-and-rows-in-Pivotgrid.md
+++ b/wpf/Pivot-Grid/How-To/Resizing-columns-and-rows-in-Pivotgrid.md
@@ -9,7 +9,7 @@ documentation: ug
# How to Resize columns and Rows in WPF Pivot Grid
-PivotGridControl supports resizing of rows and columns dynamically. In this topic, on-demand resizing of rows and columns is discussed.
+The Pivot Grid Control supports resizing of rows and columns dynamically. In this topic, on-demand resizing of rows and columns is discussed.
## Resizing the columns
diff --git a/wpf/Pivot-Grid/Hyperlink-Cells.md b/wpf/Pivot-Grid/Hyperlink-Cells.md
index e878445f0..c57c618db 100644
--- a/wpf/Pivot-Grid/Hyperlink-Cells.md
+++ b/wpf/Pivot-Grid/Hyperlink-Cells.md
@@ -9,7 +9,7 @@ documentation: ug
# Hyperlink Cells in WPF Pivot Grid
-The pivot grid allows hyperlinking of cells to retrieve a detailed information about a particular cell. It generates a separate event called HyperLinkCellClick for the clicked hyperlink cell, and the HyperLinkCellClickEventArgs returns the clicked PivotCellInfo.
+The Pivot Grid allows hyperlinking of cells to retrieve detailed information about a particular cell. It generates a separate event called HyperLinkCellClick for the clicked hyperlink cell, and the HyperLinkCellClickEventArgs returns the clicked PivotCellInfo.
The `Hyperlink Cell` property can be applied individually to the following cells:
@@ -21,9 +21,9 @@ The `Hyperlink Cell` property can be applied individually to the following cells
Property
-* **IsHyperlinkCell**: Gets or sets whether to enable or disable the grid cells of pivot grid as hyperlink cells.
+* **IsHyperlinkCell**: Gets or sets whether to enable or disable the grid cells of the control as hyperlink cells.
-## Defining the property in pivot grid
+## Defining the property in Pivot Grid
You can enable or disable the hyperlink for the cells separately for all row header, column header, summary header, and value cells through the `IsHyperlinkCell` property. It can be mentioned in code-behind.
@@ -47,21 +47,21 @@ public partial class MainWindow: Window {
{% endhighlight %}
- 
+ 
_PivotGrid with Column header hyperlink_
- 
+ 
_PivotGrid with Row header hyperlink_
- 
+ 
_PivotGrid with Summary cell hyperlink_
- 
+ 
_PivotGrid with Summary header hyperlink_
-
+
_PivotGrid with Value cell hyperlink_
diff --git a/wpf/Pivot-Grid/Inner-Most-Computations.md b/wpf/Pivot-Grid/Inner-Most-Computations.md
index 6f4360e15..fe22a9a2a 100644
--- a/wpf/Pivot-Grid/Inner-Most-Computations.md
+++ b/wpf/Pivot-Grid/Inner-Most-Computations.md
@@ -9,7 +9,7 @@ documentation: ug
# Display Innermost Computations in WPF Pivot Grid
-The pivot grid supports displaying the grid with inner most computations alone without displaying the total values by using the `InnerMostComputationsOnly` property. It can be mentioned in XAML or code-behind.
+The Pivot Grid supports displaying the grid with innermost computations alone without displaying the total values by using the `InnerMostComputationsOnly` property. It can be mentioned in XAML or code-behind.
For XAML, refer to the following code sample.
@@ -57,6 +57,6 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
\ No newline at end of file
diff --git a/wpf/Pivot-Grid/Localization.md b/wpf/Pivot-Grid/Localization.md
index ee5f6d156..4795712a3 100644
--- a/wpf/Pivot-Grid/Localization.md
+++ b/wpf/Pivot-Grid/Localization.md
@@ -9,7 +9,7 @@ documentation: ug
# Localization in WPF Pivot Grid
-Localization deals with customizing data and resources for specific culture or language. The built-in localization and globalization mechanism in WPF allows you to localize any string resource used by pivot grid controls. Localization can be done in the following ways.
+Localization deals with customizing data and resources for a specific culture or language. The built-in localization and globalization mechanism in WPF allows you to localize any string resource used by the Pivot Grid control. Localization can be done in the following ways.
* Localization using resource file.
* Localization using satellite assembly.
@@ -18,7 +18,7 @@ Localization deals with customizing data and resources for specific culture or l
Create and place the resource files in a separate location inside the user application. Then, access the culture specific resources from the current application assembly.
-For this, first create a resource file for the pivot grid control and translate the strings to your culture. After the strings are translated, you might use the resources in your projects by setting the corresponding culture in your application.
+For this, first create a resource file for the control and translate the strings to your culture. After the strings are translated, you might use the resources in your projects by setting the corresponding culture in your application.
Refer to the following code sample.
@@ -62,6 +62,6 @@ After executing the above command, the satellite assembly will be generated in t
N> Make sure that the name of satellite assembly should be in the format *MyAppName.resources.dll* and the name of the **.resx* file should be like Syncfusion.PivotAnalysis.Wpf.ar-AE.resx (Arabic). If the name of dll’s differs from your application name, then localization will not work.
-
+
N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
\ No newline at end of file
diff --git a/wpf/Pivot-Grid/Multi-column-Sorting.md b/wpf/Pivot-Grid/Multi-column-Sorting.md
index e2490724c..f929561c6 100644
--- a/wpf/Pivot-Grid/Multi-column-Sorting.md
+++ b/wpf/Pivot-Grid/Multi-column-Sorting.md
@@ -9,13 +9,13 @@ documentation: ug
# Multi-Column Sorting in WPF Pivot Grid
-Multicolumn sorting allows you to sort the fields one after the other. For example, if a user has three different fields rendered in the pivot grid, then it is possible to sort like: **OrderBy(field1).ThenBy(field2).ThenBy(field3).**.
+Multicolumn sorting allows you to sort the fields one after the other. For example, if a user has three different fields rendered in the Pivot Grid, then it is possible to sort like: **OrderBy(field1).ThenBy(field2).ThenBy(field3).**.
A separate index number is used at the top of each column to maintain the order of the sorted columns while doing the multicolumn sorting. Also, multicolumn sorting can be applied for both **Normal** and **Row Pivots Only** modes of the pivot grid control.
## Multicolumn sorting in normal mode
-You can enable the sorting through XAML or code-behind using the `SortOption` property of the pivot grid control.
+You can enable sorting through XAML or code-behind using the `SortOption` property of the Pivot Grid control.
For XAML, refer to the following code sample.
@@ -84,25 +84,25 @@ public partial class MainWindow: Window {
{% endhighlight %}
-* The following screenshot shows the normal pivot grid.
+* The following screenshot shows the normal Pivot Grid.
- 
+ 
-* The **Quantity** column has been sorted in the pivot grid.
+* The **Quantity** column has been sorted in the Pivot Grid.
- 
+ 
-* By pressing the Ctrl key, the **Amount** column is sorted. Now, the pivot grid is sorted by multiple columns.
+* By pressing the Ctrl key, the **Amount** column is sorted. Now, the Pivot Grid is sorted by multiple columns.
- 
+ 
* Then, by pressing the Ctrl key again, you can the sort the pivot grid for 'n' number of columns.
- 
+ 
## Multicolumn sorting in row pivots only mode
-You can enable the sorting through XAML or code-behind using the `SortOption` property of the pivot grid control in RowPivotsOnly mode.
+You can enable sorting through XAML or code-behind using the `SortOption` property of the control in RowPivotsOnly mode.
For XAML, refer to the following code sample.
{% highlight xaml %}
diff --git a/wpf/Pivot-Grid/Overview.md b/wpf/Pivot-Grid/Overview.md
index c78784692..aab209729 100644
--- a/wpf/Pivot-Grid/Overview.md
+++ b/wpf/Pivot-Grid/Overview.md
@@ -9,6 +9,6 @@ documentation: ug
# About Syncfusion WPF Pivot Grid Control
-The [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) is a powerful cell-oriented, extensible grid control which works with relational data. It simulates the pivot table feature of Microsoft Excel. The pivot grid pivots, summarizes, and groups data to organize it in a cross-tabulated form. It is used in financial domains to organize and analyze the business data.
+The [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) is a powerful cell-oriented, extensible grid control which works with relational data. It simulates the pivot table feature of Microsoft Excel. The pivot Grid pivots, summarizes, and groups data to organize it in a cross-tabulated form. It is used in financial domains to organize and analyze the business data.
N> You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
\ No newline at end of file
diff --git a/wpf/Pivot-Grid/Performance-Improvement-along-Virtualized-Bi.md b/wpf/Pivot-Grid/Performance-Improvement-along-Virtualized-Bi.md
index 0d717eed4..9faca6f72 100644
--- a/wpf/Pivot-Grid/Performance-Improvement-along-Virtualized-Bi.md
+++ b/wpf/Pivot-Grid/Performance-Improvement-along-Virtualized-Bi.md
@@ -9,12 +9,12 @@ documentation: ug
# Virtualized Binding in WPF Pivot Grid
-It provides high loading performance for a large set of records. This feature helps to load data in the pivot grid on-demand using the **Index Engine**.
+It provides high loading performance for a large set of records. This feature helps to load data in the Pivot Grid on-demand using the **Index Engine**.
* **UseIndexedEngine**: Gets or sets whether an optimized algorithm that relies on indexing the raw data should be used to compute the pivot information.
* **EnableOnDemandCalculations**: Gets or sets whether the calculations are postponed until the value is requested through the indexer in the PivotEngine.
-To achieve this, after defining the pivot grid control, set the `EnableOnDemandCalculations` and `UseIndexedEngine` properties of PivotEngine to true. The values for IndexEngine can be obtained by using the `ItemObjectLookup()` method and the time span should be calculated by using the `Dispatcher.BeginInvoke()` method. Refer to the following code sample.
+To achieve this, after defining the Pivot Grid control, set the `EnableOnDemandCalculations` and `UseIndexedEngine` properties of PivotEngine to true. The values for IndexEngine can be obtained by using the `ItemObjectLookup()` method and the time span should be calculated by using the `Dispatcher.BeginInvoke()` method. Refer to the following code sample.
{% highlight C# %}
@@ -127,6 +127,6 @@ To achieve this, after defining the pivot grid control, set the `EnableOnDemandC
{% endhighlight %}
-
+
N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
\ No newline at end of file
diff --git a/wpf/Pivot-Grid/Pivot-Computation-Info.md b/wpf/Pivot-Grid/Pivot-Computation-Info.md
index 52625a22c..24b5e4b72 100644
--- a/wpf/Pivot-Grid/Pivot-Computation-Info.md
+++ b/wpf/Pivot-Grid/Pivot-Computation-Info.md
@@ -9,20 +9,20 @@ documentation: ug
# PivotComputationInfo in WPF Pivot Grid
-Pivot computation holds the information needed for calculations that appear in the pivot grid control. For each calculation, there is an associated `PivotComputationInfo` object added to the PivotCalculations collection.
+Pivot computation holds the information needed for calculations that appear in the Pivot Grid control. For each calculation, there is an associated `PivotComputationInfo` object added to the PivotCalculations collection.
Properties
-* **CalculationName**: Gets or sets what needs to be displayed in the pivot table if more than one calculation is included in the pivot grid.
+* **CalculationName**: Gets or sets what needs to be displayed in the pivot table if more than one calculation is included in the Pivot Grid.
* **Description**: Gets or sets the description of the calculation.
* **FieldName**: Gets or sets the name of the property to be used in this calculation.
* **FieldHeader**: Gets or sets the title you want to view in the header.
-* **Format**: Gets of sets the format string to be used, to format the calculation results in the pivot grid.
+* **Format**: Gets or sets the format string to be used to format the calculation results in the Pivot Grid.
* **Summary**: Gets or sets the SummaryBase object used to define the calculation. When you specify SummaryType.Custom, set summary as an instance of your custom SummaryBase-derived object.
* **SummaryType**: Gets or sets the SummaryType enumeration for the calculation. You can set some enumeration values to the summary type; otherwise, by default it is set as count.
* **AllowRunTimeGroupByField**: Gets or sets the value to enable/disable grouping for the pivot item.
-* **DisplayOption**: Gets or sets the calculation values to be displayed in pivot grid.
-* **CalculationType**: Gets or sets the CalculationType enumeration for this computation object and defines how to make the computational objects in pivot grid visible.
+* **DisplayOption**: Gets or sets the calculation values to be displayed in the control.
+* **CalculationType**: Gets or sets the CalculationType enumeration for this computation object and defines how to make the computational objects in the Pivot Grid visible.
* **AllowFilter**: Gets or sets whether the calculation column can be filtered when RowPivotsOnly is true in the PivotEngine.
* **AllowSort**: Gets or sets whether the calculation column can be sorted when RowPivotsOnly is true in the PivotEngine.
* **BaseItem**: Gets or sets the value of the BaseItem for calculations.
@@ -51,7 +51,7 @@ Refer to the following code sample.
## Defining PivotComputationInfo in code-behind
-Include the *Syncfusion.PivotAnalysis.Base* in the MainWindow.xaml.cs file, and then define the PivotComputationInfo's for each calculation items. Add the defined PivotComputationInfo's to PivotCalculations collection of the pivot grid control.
+Include the *Syncfusion.PivotAnalysis.Base* namespace in the MainWindow.xaml.cs file, and then define the PivotComputationInfo for each calculation item. Add the defined PivotComputationInfo to the PivotCalculations collection of the Pivot Grid control.
Refer to the following code sample.
diff --git a/wpf/Pivot-Grid/Pivot-Item.md b/wpf/Pivot-Grid/Pivot-Item.md
index f7706691d..3b5801cfa 100644
--- a/wpf/Pivot-Grid/Pivot-Item.md
+++ b/wpf/Pivot-Grid/Pivot-Item.md
@@ -9,7 +9,7 @@ documentation: ug
# PivotItem in WPF Pivot Grid
-A pivot item is a container for items in the pivot grid control. An item in a pivot table field provides the information needed to define an item. The items are individual data entries in a field category. The pivot item object is a member of the pivot items collection and consists of the following fields.
+A pivot item is a container for items in the Pivot Grid control. An item in a pivot table field provides the information needed to define an item. The items are individual data entries in a field category. The pivot item object is a member of the pivot items collection and consists of the following fields.
* **FieldHeader**: Gets or sets the title you want to view in the header for the pivot item.
* **FieldMappingName**: Gets or sets the pivot item property's mapping name.
diff --git a/wpf/Pivot-Grid/Pivot-Value-Chooser.md b/wpf/Pivot-Grid/Pivot-Value-Chooser.md
index dd4ce4d6c..e291a1aa0 100644
--- a/wpf/Pivot-Grid/Pivot-Value-Chooser.md
+++ b/wpf/Pivot-Grid/Pivot-Value-Chooser.md
@@ -9,16 +9,16 @@ documentation: ug
# Pivot Value Chooser in WPF Pivot Grid
-The pivot value chooser is used to list all the PivotFields available in the data source when the pivot grid is in RowPivotsOnly mode. This window enables users to select a PivotCalculation and add it to the pivot grid, drag and drop the PivotFields, and rearrange the calculation column in the pivot grid control at runtime.
+The pivot value chooser is used to list all the PivotFields available in the data source when the control is in RowPivotsOnly mode. This window enables users to select a PivotCalculation and add it to the Pivot Grid, drag and drop the PivotFields, and rearrange the calculation column in the control at runtime.
-* **ShowPivotValueChooser**: Hides or shows a computation value column chooser dialog that allows users to hide, show, or reorder the PivotCalculations in the pivot grid.
-* **PossiblePivotCalculations**: Gets or sets a collection of possible PivotCalculations that may appear in the pivot grid control and lists them in the pivot value chooser.
+* **ShowPivotValueChooser**: Hides or shows a computation value column chooser dialog that allows users to hide, show, or reorder the PivotCalculations in the Pivot Grid.
+* **PossiblePivotCalculations**: Gets or sets a collection of possible PivotCalculations that may appear in the control and lists them in the pivot value chooser.
## Pivot value chooser with possible calculation values
`PossiblePivotCalculations` is a collection where user can define which PivotFields should appear in the pivot value chooser window. If it is not defined, then this collection will be automatically generated PivotFields from the ItemSource of the pivot grid control.
-After defining the pivot grid control in RowPivotsOnly mode, raise the loaded event of the pivot grid. Inside the `PivotGrid_Loaded()` event, set the `ShowPivotValueChooser` property to true and define an observable collection of PivotComputationInfo to `PossiblePivotCalculations`.
+After defining the Pivot Grid in RowPivotsOnly mode, raise the loaded event. Inside the `PivotGrid_Loaded()` event, set the `ShowPivotValueChooser` property to true and define an observable collection of PivotComputationInfo to `PossiblePivotCalculations`.
{% highlight C# %}
@@ -43,7 +43,7 @@ public partial class MainWindow: Window
## Pivot value chooser with all the default values
-After defining the pivot grid control in RowPivotsOnly mode, raise the loaded event of the pivot grid. Inside the `PivotGrid_Loaded()` event, set the `ShowPivotValueChooser` property to true.
+After defining the Pivot Grid in RowPivotsOnly mode, raise the loaded event. Inside the `PivotGrid_Loaded()` event, set the `ShowPivotValueChooser` property to true.
{% highlight C# %}
diff --git a/wpf/Pivot-Grid/PivotGrid-Field-List.md b/wpf/Pivot-Grid/PivotGrid-Field-List.md
index 30fa114b1..245a0990e 100644
--- a/wpf/Pivot-Grid/PivotGrid-Field-List.md
+++ b/wpf/Pivot-Grid/PivotGrid-Field-List.md
@@ -9,9 +9,9 @@ documentation: ug
# PivotGrid Field List in WPF Pivot Grid
-With the current implementation of grouping bar, you cannot add the deleted items to the pivot grid. The delete operation can be easily performed in the grouping bar by using its "AllowRemoving" feature, but there is no possibility to add again the deleted items. To achieve this, maintain a separate window called **PivotTable Field List**, which holds the fields that are not present in the pivot grid but available in the ItemSource. You can bind a collection of PivotItems as **PivotFields** which gets included in the field list window but not present in the pivot grid.
+With the current implementation of grouping bar, you cannot add the deleted items to the Pivot Grid. The delete operation can be easily performed in the grouping bar by using its "AllowRemoving" feature, but there is no possibility to add the deleted items again. To achieve this, maintain a separate window called **PivotTable Field List**, which holds the fields that are not present in the control but available in the ItemSource. You can bind a collection of PivotItems as **PivotFields**, which gets included in the field list window but not present in the control.
-The pivot table field list (or dynamic field list) can be launched by setting the `ShowFieldList` property to "true" or clicking the **ShowFieldList** menu item of grouping bar context menu. The field list is bound to `PivotFields` property of pivot grid control, which is a collection of PivotItems. This property can be set through XAML or code-behind.
+The pivot table field list (or dynamic field list) can be launched by setting the `ShowFieldList` property to "true" or clicking the **ShowFieldList** menu item of the grouping bar context menu. The field list is bound to the `PivotFields` property of Pivot Grid, which is a collection of PivotItems. This property can be set through XAML or code-behind.
For XAML, refer to the following code sample.
@@ -81,6 +81,6 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
\ No newline at end of file
diff --git a/wpf/Pivot-Grid/PivotGrid-Getting-Started.md b/wpf/Pivot-Grid/PivotGrid-Getting-Started.md
index 8e098595f..1b54ba001 100644
--- a/wpf/Pivot-Grid/PivotGrid-Getting-Started.md
+++ b/wpf/Pivot-Grid/PivotGrid-Getting-Started.md
@@ -12,15 +12,15 @@ documentation: ug
>**Important**
Starting with v16.2.0.x, if you refer to Syncfusion® assemblies from trial setup or from the NuGet feed, include a license key in your projects. Refer to this [link](https://help.syncfusion.com/common/essential-studio/licensing/overview) to learn about registering Syncfusion® license key in your WPF application to use the components.
-## Adding pivot grid through designer
+## Adding Pivot Grid through designer
Open Visual Studio IDE and navigate to File > New > Project > WPF Application (inside Visual C# Templates) to create a new WPF application.
-After creating the WPF application, go to View menu and select Toolbox option. Now, the toolbox will appear inside the Visual Studio IDE. Drag the pivot grid control from **Syncfusion® BI WPF** category in the toolbox to the designer page. The pivot grid control will be added along with the dependency assemblies automatically to the application.
+After creating the WPF application, go to View menu and select Toolbox option. Now, the toolbox will appear inside the Visual Studio IDE. Drag the Pivot Grid control from **Syncfusion® BI WPF** category in the toolbox to the designer page. The control will be added along with the dependency assemblies automatically to the application.
-
+
-## Adding pivot grid through XAML
+## Adding Pivot Grid through XAML
Open Visual Studio IDE and navigate to File > New > Project > WPF Application (inside Visual C# Templates) to create a new WPF application.
@@ -36,7 +36,7 @@ Next, you should add the following dependency assemblies to your WPF application
N> You can also get the assemblies by browsing to the default assembly location.
{System Drive}:\Program Files (x86)\Syncfusion\Essential Studio\\{version number}\precompiledassemblies\\{version number}
-Then, define the pivot grid control in MainWindow.xaml as shown in the following code sample.
+Then, define the Pivot Grid control in MainWindow.xaml as shown in the following code sample.
{% highlight XAML %}
@@ -52,7 +52,7 @@ Then, define the pivot grid control in MainWindow.xaml as shown in the following
{% endhighlight %}
-## Adding pivot grid through code-behind
+## Adding Pivot Grid through code-behind
Open Visual Studio IDE and navigate to File > New > Project > WPF Application (inside Visual C# Templates) to create a new WPF application.
@@ -68,7 +68,7 @@ Add the following dependency assemblies to your WPF application. To add them to
N> You can also get the assemblies by browsing to the default assembly location
{System Drive}:\Program Files (x86)\Syncfusion\Essential Studio\\{version number}\precompiledassemblies\\{version number}
-Then, add a grid container in MainWindow.xaml file to hold the pivot grid control created and added from code-behind.
+Then, add a grid container in MainWindow.xaml file to hold the Pivot Grid control created and added from code-behind.
{% highlight XAML %}
@@ -83,7 +83,7 @@ Then, add a grid container in MainWindow.xaml file to hold the pivot grid contro
{% endhighlight %}
-Include the *Syncfusion.Windows.Controls.PivotGrid* namespace in the MainWindow.xaml.cs file to create a pivot grid control in code-behind.
+Include the *Syncfusion.Windows.Controls.PivotGrid* namespace in the MainWindow.xaml.cs file to create a Pivot Grid control in code-behind.
{%highlight C# %}
@@ -109,7 +109,7 @@ void MainWindow_Loaded(object sender, RoutedEventArgs e) {
{% endhighlight %}
-## Adding pivot grid through expression blend
+## Adding Pivot Grid through expression blend
Open Blend for Visual Studio and navigate to File > New Project > WPF > WPF Application to create a new WPF application.
@@ -125,16 +125,16 @@ Select the **Projects** tab available in the top-left corner of the Blend IDE, r
N> You can also get the assemblies by browsing to the default assembly location
{System Drive}:\Program Files (x86)\Syncfusion\Essential Studio\\{version number}\precompiledassemblies\\{version number}
-After adding the above assemblies, the pivot grid control will be automatically added under **Assets** tab.
-Now, choose the **Assets** tab and drag the pivot grid control from the toolbox to designer section.
+After adding the above assemblies, the Pivot Grid control will be automatically added under **Assets** tab.
+Now, choose the **Assets** tab and drag the control from the toolbox to designer section.
-
+
-## Binding a data source to pivot grid control
+## Binding a data source to Pivot Grid control
Right-click the project in the solution explorer and select **Add > New item**. In the **Add New Item** window, choose **Class** option and provide the name of the class as *ProductSales.cs* and click **OK**.
-The ItemSource for the pivot grid control will be initialized in this file. Refer to the following code snippet.
+The ItemSource for the control will be initialized in this file. Refer to the following code snippet.
{% highlight C# %}
@@ -211,7 +211,7 @@ public class ProductSales {
{% endhighlight %}
-Above mentioned GetSalesData method is used to get the collection that needs to be populated in the pivot grid control. Now, bind the collection to the pivot grid control as its ItemSource. It can be done through XAML or code-behind.
+Above mentioned GetSalesData method is used to get the collection that needs to be populated in the control. Now, bind the collection to the Pivot Grid as its ItemSource. It can be done through XAML or code-behind.
To initialize the ItemSource through **XAML**, ObjectDataProvider is used. Refer to the following code.
@@ -249,7 +249,7 @@ void MainWindow_Loaded(object sender, RoutedEventArgs e) {
### Defining the PivotItems and PivotComputations
- **PivotItem** is a container for items in the pivot grid control, and an item can be either a **PivotRow** or **PivotColumn**. Refer to the topic *1.3.1 Pivot Item* for more details. **PivotComputationInfo** holds the value fields for the pivot grid control, and it does have different types of custom calculations. You can summarize the values depends on your requirement and refer to the topic *1.3.2 PivotComputationInfo* for more details. PivotItems and PivotComputations can be defined through XAML and code-behind.
+ **PivotItem** is a container for items in the control, and an item can be either a **PivotRow** or **PivotColumn**. Refer to the topic *1.3.1 Pivot Item* for more details. **PivotComputationInfo** holds the value fields for the control, and it does have different types of custom calculations. You can summarize the values depends on your requirement and refer to the topic *1.3.2 PivotComputationInfo* for more details. PivotItems and PivotComputations can be defined through XAML and code-behind.
To define the PivotItems and PivotComputations through XAML, refer to the following code snippet.
@@ -328,7 +328,7 @@ void MainWindow_Loaded(object sender, RoutedEventArgs e) {
**Run** the application, the following output will be generated.
-
+
N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
\ No newline at end of file
diff --git a/wpf/Pivot-Grid/PivotSchemaDesigner-for-WPF.md b/wpf/Pivot-Grid/PivotSchemaDesigner-for-WPF.md
index 423b93051..b5ee3e5db 100644
--- a/wpf/Pivot-Grid/PivotSchemaDesigner-for-WPF.md
+++ b/wpf/Pivot-Grid/PivotSchemaDesigner-for-WPF.md
@@ -9,20 +9,20 @@ documentation: ug
# About Syncfusion WPF PivotSchemaDesigner Control
-The pivot schema designer can be supported in the pivot grid, so that it can be presented like an **ExcelPivotTable**. By using the pivot schema designer, you can add, rearrange, or remove fields to show data in the pivot grid exactly the way you want. It contains two sections, consisting of the following items:
+The pivot schema designer can be supported in the Pivot Grid, so that it can be presented like an **ExcelPivotTable**. By using the pivot schema designer, you can add, rearrange, or remove fields to show data in the control exactly the way you want. It contains two sections, consisting of the following items:
-* A **field section** at the top is used for adding and removing fields from the pivot grid.
-* A **layout section** at the bottom is used for rearranging and repositioning the fields in the pivot grid.
+* A **field section** at the top is used for adding and removing fields from the Pivot Grid.
+* A **layout section** at the bottom is used for rearranging and repositioning the fields in the Pivot Grid.
## Fields section
-The **Fields section** consists of a list of fields present in the pivot grid including row, column, and summary elements, which is called as **PivotTable Field List**. A field will be added to the pivot grid if it is checked, or it will be removed from the pivot grid if it is unchecked. By default, fields will be added to the row label if checked, and added to the column label by simply dragging the field to the column label area. The filtering process is also supported in the pivot table field list. Filter pop-up will be opened while clicking the expander icon in the right-corner of each pivot table field list items.
+The **Fields section** consists of a list of fields present in the Pivot Grid including row, column, and summary elements, which is called as **PivotTable Field List**. A field will be added to the control if it is checked, or it will be removed if it is unchecked. By default, fields will be added to the row label if checked, and added to the column label by simply dragging the field to the column label area. The filtering process is also supported in the pivot table field list. Filter pop-up will be opened while clicking the expander icon in the right-corner of each pivot table field list items.

## Layout section
-The layout section is used to rearrange and reposition the fields in a pivot grid. It has the following areas:
+The layout section is used to rearrange and reposition the fields in the Pivot Grid. It has the following areas:
* Report filter
* Column label
@@ -39,15 +39,15 @@ The report filter is used to filter the entire report based on the selected item
### Column label
-The column label is used to display fields as columns at the top of a report. A column at the lower position is nested within another column positioned immediately above it in the pivot grid.
+The column label is used to display fields as columns at the top of a report. A column at the lower position is nested within another column positioned immediately above it in the Pivot Grid.
### Row label
-Row label is used to display fields as rows at the top of a report. A row at the lower position is nested within another row positioned immediately above it in the pivot grid.
+Row label is used to display fields as rows at the top of a report. A row at the lower position is nested within another row positioned immediately above it in the Pivot Grid.
### Values
-The values section is used to display the summary fields of the pivot grid.
+The values section is used to display the summary fields of the Pivot Grid.
N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
\ No newline at end of file
diff --git a/wpf/Pivot-Grid/Print-and-Print-Preview.md b/wpf/Pivot-Grid/Print-and-Print-Preview.md
index c17e593d6..bb57b2292 100644
--- a/wpf/Pivot-Grid/Print-and-Print-Preview.md
+++ b/wpf/Pivot-Grid/Print-and-Print-Preview.md
@@ -9,13 +9,13 @@ documentation: ug
# Printing in WPF Pivot Grid
-The printing support for pivot grid control is provided along with grouping bar. You can use the `ShowPrintPreview` method to preview the pivot grid control before printing. The `PrintHeader` and `PrintFooter` properties are used to add or remove the header and footer information while printing.
+The printing support for Pivot Grid control is provided along with grouping bar. You can use the `ShowPrintPreview` method to preview the control before printing. The `PrintHeader` and `PrintFooter` properties are used to add or remove the header and footer information while printing.
**Defining header and footer in XAML**
-After defining the pivot grid control, define the DataTemplate for header and footer and set the `PrintHeader` and `PrintFooter` properties of the pivot grid control.
+After defining the control, define the DataTemplate for header and footer and set the `PrintHeader` and `PrintFooter` properties of the control.
-Refer to the following code sample to learn about the header template, footer template, and setting its properties in the pivot grid control.
+Refer to the following code sample to learn about the header template, footer template, and setting its properties in the Pivot Grid control.
{% highlight xaml %}
@@ -56,9 +56,9 @@ Refer to the following code sample to learn about the header template, footer te
{% endhighlight %}
-**Invoking print preview window in pivot grid**
+**Invoking print preview window in Pivot Grid**
-After defining the pivot grid control, raise the loaded event of pivot grid. Inside the `pivotGrid_Loaded` event, invoke the `ShowPrintPreview` method to enable the printing behavior.
+After defining the control, raise the loaded event of Pivot Grid. Inside the `pivotGrid_Loaded` event, invoke the `ShowPrintPreview` method to enable the printing behavior.
{% highlight C# %}
@@ -82,7 +82,7 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
## Print preview options
@@ -102,7 +102,7 @@ Click the **PageSettings** in the print preview window to change the pages while
**Print**
-Click the **Print** in the print preview window to print the pivot grid content.
+Click the **Print** in the print preview window to print the content.

diff --git a/wpf/Pivot-Grid/RTL-support.md b/wpf/Pivot-Grid/RTL-support.md
index a1bdd4f8c..cc0ab9ac4 100644
--- a/wpf/Pivot-Grid/RTL-support.md
+++ b/wpf/Pivot-Grid/RTL-support.md
@@ -9,7 +9,7 @@ documentation: ug
# RTL Support in WPF Pivot Grid
-The pivot grid displays the contents of the grid from right-to-left. It can be achieved by setting the `FlowDirection` property of the pivot grid control to "RightToLeft".
+Pivot Grid displays the contents of the grid from right-to-left. This can be achieved by setting the `FlowDirection` property of the control to "RightToLeft".
For XAML, refer to the following code sample.
@@ -79,6 +79,6 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
\ No newline at end of file
diff --git a/wpf/Pivot-Grid/Resizing-the-PivotGrid-to-fit-its-content.md b/wpf/Pivot-Grid/Resizing-the-PivotGrid-to-fit-its-content.md
index 4ee674a18..ec7554a5c 100644
--- a/wpf/Pivot-Grid/Resizing-the-PivotGrid-to-fit-its-content.md
+++ b/wpf/Pivot-Grid/Resizing-the-PivotGrid-to-fit-its-content.md
@@ -9,7 +9,7 @@ documentation: ug
# Resize to Fit in WPF Pivot Grid
-The pivot grid supports resizing the grid to fit its content while expanding and collapsing the groups. The grid will be resized after refreshing the page.
+Pivot Grid supports resizing the grid to fit its content while expanding and collapsing the groups. The grid will be resized after refreshing the page.
The `ResizePivotGridToFit` property is used to resize the grid, and it can be defined in both XAML and code-behind.
@@ -81,6 +81,6 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
\ No newline at end of file
diff --git a/wpf/Pivot-Grid/Restrict-Auto-resizing-of-Row-Header-Area.md b/wpf/Pivot-Grid/Restrict-Auto-resizing-of-Row-Header-Area.md
index 32d01256f..322e090f0 100644
--- a/wpf/Pivot-Grid/Restrict-Auto-resizing-of-Row-Header-Area.md
+++ b/wpf/Pivot-Grid/Restrict-Auto-resizing-of-Row-Header-Area.md
@@ -9,7 +9,7 @@ documentation: ug
# Restrict Resizing of Row Header in WPF Pivot Grid
-The pivot grid supports restricting the row header items from being stretched when there are too many PivotCalculation items in the data header area. When you click the **ShowFields** button in the data header area of the grouping bar, the pivot computation list window appears with the PivotCalculation fields.
+Pivot Grid supports restricting the row header items from being stretched when there are too many PivotCalculation items in the data header area. When you click the **ShowFields** button in the data header area of the grouping bar, the pivot computation list window appears with the PivotCalculation fields.
The `AllowRowHeaderAreaAutoSizing` property is set to "false" to display the computation button (ShowFields button) and restrict the row header items from being stretched when more items are added to the computation area. By default, this property is set to "true", and it can be defined both in XAML and code-behind.
@@ -81,6 +81,6 @@ public partial class MainWindow: Window
{% endhighlight %}
-
+
N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
\ No newline at end of file
diff --git a/wpf/Pivot-Grid/Runtime-Calculated-Field.md b/wpf/Pivot-Grid/Runtime-Calculated-Field.md
index 8737ed1aa..e6f28f2d1 100644
--- a/wpf/Pivot-Grid/Runtime-Calculated-Field.md
+++ b/wpf/Pivot-Grid/Runtime-Calculated-Field.md
@@ -9,9 +9,9 @@ documentation: ug
# Calculated Field in WPF Pivot Grid
-The pivot grid inserts a new calculated field based on the existing calculated items using the calculated field window. This option is available as a menu item in the grouping bar context menu.
+Pivot Grid inserts a new calculated field based on the existing calculated items using the calculated field window. This option is available as a menu item in the grouping bar context menu.
-**Inserting a new calculated field in pivot grid**
+**Inserting a new calculated field in Pivot Grid**
To insert a new calculated field, open the calculated field window using the grouping bar context menu. Then, define a **Name** for the new calculated field.
@@ -25,9 +25,9 @@ Note that, the **Formula** can be entered by inserting calculation fields throug
_Entering Formula for the Calculated Field_
-Click **Add** to add the calculated field and **OK** to populate the pivot grid control.
+Click **Add** to add the calculated field and **OK** to populate the control.
-
+
_PivotGrid with newly added Calculated Field_
diff --git a/wpf/Pivot-Grid/Runtime-Custom-Summary.md b/wpf/Pivot-Grid/Runtime-Custom-Summary.md
index cef4b7015..b18eb30b6 100644
--- a/wpf/Pivot-Grid/Runtime-Custom-Summary.md
+++ b/wpf/Pivot-Grid/Runtime-Custom-Summary.md
@@ -9,7 +9,7 @@ documentation: ug
# Custom Summary in WPF Pivot Grid
-The pivot grid enables you to set the custom summaries for the PivotItem values at both load time and runtime (using pivot computation info dialog).
+Pivot Grid enables you to set the custom summaries for the PivotItem values at both load time and runtime (using the pivot computation info dialog).
To create a custom SummaryBase class, add a new class and inherit the abstract class `SummaryBase`. Implement your summary logics by overriding Combine(), CombineSummary(), GetResult(), GetInstance(), and Reset() methods.
@@ -78,7 +78,7 @@ public class MyCustomSummaryBase2: SummaryBase {
## Defining custom summary in load time
-You can define your own custom SummaryBase to PivotCalculations in pivot grid by setting the instance of the custom summary in the `Summary` property. This custom summary can be used only if you set the `SummaryType` of that PivotCalculation as "Custom". It can be done through XAML or code-behind.
+You can define your own custom SummaryBase to PivotCalculations in Pivot Grid by setting the instance of the custom summary in the `Summary` property. This custom summary can be used only if you set the `SummaryType` of that PivotCalculation as "Custom". It can be done through XAML or code-behind.
For XAML, refer to the following code sample.
@@ -182,6 +182,6 @@ public partial class MainWindow: Window {
To set custom summary at runtime, double-click the items from the pivot schema designer that will pop-up the pivot computation information dialog box. In the summarize value by combo box, you can select the predefined custom summaries as required.
-
+
N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
\ No newline at end of file
diff --git a/wpf/Pivot-Grid/Selection.md b/wpf/Pivot-Grid/Selection.md
index f6b9af0c7..4200dec7b 100644
--- a/wpf/Pivot-Grid/Selection.md
+++ b/wpf/Pivot-Grid/Selection.md
@@ -9,11 +9,11 @@ documentation: ug
# Cell Selection in WPF Pivot Grid
-The pivot grid supports selecting entire row or column and group of cells with or without header cells. It is similar to cell selection in the Microsoft Excel.
+The Pivot Grid supports selecting entire row or column and group of cells with or without header cells. It is similar to cell selection in the Microsoft Excel.
## Cell selection
-The `AllowSelection` property is used to achieve selection behavior in the pivot grid. It can be done through XAML or code-behind.
+The `AllowSelection` property is used to achieve selection behavior in the control. It can be done through XAML or code-behind.
For XAML, refer to the following code sample.
@@ -83,19 +83,19 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
### To select a row
-You can select a whole row in the pivot grid by clicking the specific row header and you can select multiple rows by clicking a row header and dragging it through the other row headers as per requirement.
+You can select a whole row in the Pivot Grid by clicking the specific row header and you can select multiple rows by clicking a row header and dragging it through the other row headers as per requirement.
-
+
### To select a column
-You can select a whole column in the pivot grid by clicking the specific column header and you can select multiple columns by clicking a column header and dragging it through the other column headers as per requirement.
+You can select a whole column in the Pivot Grid by clicking the specific column header and you can select multiple columns by clicking a column header and dragging it through the other column headers as per requirement.
-
+
## Cell selection with headers
@@ -169,12 +169,12 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
-_PivotGrid selection along with Row Headers_
+_Selection along with row headers_
-
+
-_PivotGrid selection along with Column Headers_
+_Selection along with column headers_
N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
\ No newline at end of file
diff --git a/wpf/Pivot-Grid/SerializationDeserialization.md b/wpf/Pivot-Grid/SerializationDeserialization.md
index 208a0a6f0..34f525496 100644
--- a/wpf/Pivot-Grid/SerializationDeserialization.md
+++ b/wpf/Pivot-Grid/SerializationDeserialization.md
@@ -11,7 +11,7 @@ documentation: ug
Serialization can be implemented for applications that need to save their data and structure after closed. Serialization supports saving the structure and data of pivot grid control to an XML file and it can be loaded at any time.
-The following are the properties of pivot grid that can be serialized.
+The following are the properties of the Pivot Grid that can be serialized.
@@ -168,11 +168,11 @@ The following are the properties of pivot grid that can be serialized.
-## Using the serialization/deserialization in pivot grid
+## Using the serialization/deserialization in Pivot Grid
-On serialization, the expand and collapse states of pivot grid cells are maintained. So when deserializing, the item source specified for the grid should be same as the item source used in serialization. This can be ignored by setting the `IgnoreExpandCollapseOnSerialization` property of pivot grid control to "False".
+On serialization, the expand and collapse states of the Pivot Grid cells are maintained. So when deserializing, the item source specified for the grid should be same as the item source used in serialization. This can be ignored by setting the `IgnoreExpandCollapseOnSerialization` property of the control to "False".
-The following are the methods used in pivot grid for serialization/deserialization.
+The following are the methods used in the Pivot Grid for serialization/deserialization.
Methods table
@@ -186,44 +186,44 @@ Methods table
|
Serialize() |
- Serializes the pivot grid into an XML file format using the save file dialog. |
+ Serializes the Pivot Grid into an XML file format using the save file dialog. |
- |
void |
|
Deserialize() |
- Deserialize the pivot grid from the saved XML file using the open file dialog. |
+ Deserialize the Pivot Grid from the saved XML file using the open file dialog. |
- |
void |
|
Serialize(string fileName) |
- Serializes the pivot grid into an XML file format and saves it in the specified location. |
+ Serializes the Pivot Grid into an XML file format and saves it in the specified location. |
string fileName |
void |
|
Deserialize(string filename) |
- Deserialize the pivot grid from the specified XML file. |
+ Deserialize the Pivot Grid from the specified XML file. |
string fileName |
void |
|
SerializedXmlString() |
- Serializes some specific properties of pivot grid control in string format. |
+ Serializes some specific properties of the Pivot Grid control in string format. |
- |
string |
|
Deserialize(string XmlString) |
- Deserialize the XML string format in the pivot grid control. |
+ Deserialize the XML string format in the Pivot Grid control. |
string XmlString |
void |
### Serialization
-After defining a pivot grid control, call the Serialize() method in the separate event handler. Refer to the following code snippet.
+After defining the control, call the Serialize() method in the separate event handler. Refer to the following code snippet.
{% highlight C# %}
@@ -248,7 +248,7 @@ public partial class MainWindow: Window {
### Deserialization
-After defining a pivot grid control, call the De-Serialize() method in the separate event handler. Refer to the following code snippet.
+After defining the control, call the De-Serialize() method in the separate event handler. Refer to the following code snippet.
{% highlight C# %}
@@ -271,6 +271,6 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
\ No newline at end of file
diff --git a/wpf/Pivot-Grid/Setting-caption-in-pivottablefieldlist.md b/wpf/Pivot-Grid/Setting-caption-in-pivottablefieldlist.md
index 4dda7eeb3..761f1abcc 100644
--- a/wpf/Pivot-Grid/Setting-caption-in-pivottablefieldlist.md
+++ b/wpf/Pivot-Grid/Setting-caption-in-pivottablefieldlist.md
@@ -9,7 +9,7 @@ documentation: ug
# Setting Caption in PivotTableFieldList in WPF Pivot Grid
-The pivot grid supports duplicating the same fields in different names. This can be achieved by using the `FieldCaption` property of PivotItem and PivotComputationInfo. This support allows you to define multiple items in same underlying type for the pivot grid control.
+The Pivot Grid supports duplicating the same fields in different names. This can be achieved by using the `FieldCaption` property of PivotItem and PivotComputationInfo. This support allows you to define multiple items in the same underlying type for the control.
The following code sample illustrates how to set the field caption for PivotItem and PivotComputationInfo.
diff --git a/wpf/Pivot-Grid/Show-Subtotals-For-Child-Elements.md b/wpf/Pivot-Grid/Show-Subtotals-For-Child-Elements.md
index 53c2ce433..a3a013dc1 100644
--- a/wpf/Pivot-Grid/Show-Subtotals-For-Child-Elements.md
+++ b/wpf/Pivot-Grid/Show-Subtotals-For-Child-Elements.md
@@ -9,7 +9,7 @@ documentation: ug
# Sub-Totals for Child Elements in WPF Pivot Grid
-By default, the pivot grid calculates summaries based on the parent nodes available in rows and columns. You can also display the subtotals based on the child elements available in rows and columns using the `ShowSubTotalsForChildren` property. This property can be set through XAML or code-behind.
+By default, the Pivot Grid calculates summaries based on the parent nodes available in rows and columns. You can also display the subtotals based on the child elements available in rows and columns using the `ShowSubTotalsForChildren` property. This property can be set through XAML or code-behind.
For XAML, refer to the following code sample.
diff --git a/wpf/Pivot-Grid/Show-single-calculation-header.md b/wpf/Pivot-Grid/Show-single-calculation-header.md
index b88499805..5fa87fb24 100644
--- a/wpf/Pivot-Grid/Show-single-calculation-header.md
+++ b/wpf/Pivot-Grid/Show-single-calculation-header.md
@@ -10,7 +10,7 @@ documentation: ug
# Single Calculation Header in WPF Pivot Grid
-By default, the pivot grid does not show the calculation headers when there is only one PivotCalculation. To show the calculation headers even when there is only one PivotCalculation, use the `ShowSingleCalculationHeader` property of pivot grid control.
+By default, the Pivot Grid does not show the calculation headers when there is only one PivotCalculation. To show the calculation headers even when there is only one PivotCalculation, use the `ShowSingleCalculationHeader` property of the control.
Refer to the following code sample.
@@ -55,6 +55,6 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
\ No newline at end of file
diff --git a/wpf/Pivot-Grid/Skin-Customization.md b/wpf/Pivot-Grid/Skin-Customization.md
index 183749eef..ef1c93888 100644
--- a/wpf/Pivot-Grid/Skin-Customization.md
+++ b/wpf/Pivot-Grid/Skin-Customization.md
@@ -9,7 +9,7 @@ documentation: ug
# Skin Customization in WPF Pivot Grid
-Skin customization applies particular style settings to the visual elements of a component. The pivot grid provides the following skin options:
+Skin customization applies particular style settings to the visual elements of a component. The Pivot Grid provides the following skin options:
* Office 2010 Blue
* Office 2010 Black
@@ -93,6 +93,6 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
\ No newline at end of file
diff --git a/wpf/Pivot-Grid/Sorting-by-values.md b/wpf/Pivot-Grid/Sorting-by-values.md
index 947507437..9934cf96e 100644
--- a/wpf/Pivot-Grid/Sorting-by-values.md
+++ b/wpf/Pivot-Grid/Sorting-by-values.md
@@ -22,7 +22,7 @@ Sorting-by-Values provides the following sort options:
* **SortDirection**: Gets or sets the sort order to ascending or descending.
* **SortOption**: Gets or sets the sorting option as all, none, column sorting, total sorting, or grand total sorting.
-The **SortOption** property of pivot grid control can be defined both in XAML and code-behind. Refer to the following code sample and screenshots.
+The **SortOption** property of Pivot Grid control can be defined both in XAML and code-behind. Refer to the following code sample and screenshots.
{% highlight xaml %}
@@ -89,31 +89,31 @@ public partial class MainWindow: Window {
## Sorting all the value columns
-**All** is used to enable sorting for all the value columns of pivot grid.
+**All** is used to enable sorting for all the value columns of Pivot Grid.
-
+
## Sorting all columns other than total and grand total columns
-**ColumnSorting** is used to enable sorting for all the value columns other than subtotal and grand total of the pivot grid.
+**ColumnSorting** is used to enable sorting for all the value columns other than subtotal and grand total of Pivot Grid.
-
+
## Sorting only subtotal columns
-**TotalSorting** is used to enable sorting only for the subtotal columns of pivot grid.
+**TotalSorting** is used to enable sorting only for the subtotal columns of Pivot Grid.
-
+
## Sorting only grand total columns
-**GrandTotalSorting** is used to enable sorting only for the grand total columns of the pivot grid.
+**GrandTotalSorting** is used to enable sorting only for the grand total columns of the control.
-
+
## Disable sorting
-**None** is the default option and it disables sorting on all the value columns of pivot grid.
+**None** is the default option and it disables sorting on all the value columns of Pivot Grid.
## Multi-column sorting
diff --git a/wpf/Pivot-Grid/Sorting.md b/wpf/Pivot-Grid/Sorting.md
index 048478cf1..6738299c1 100644
--- a/wpf/Pivot-Grid/Sorting.md
+++ b/wpf/Pivot-Grid/Sorting.md
@@ -9,7 +9,7 @@ documentation: ug
# Sorting in WPF Pivot Grid
-Sorting enables you to quickly visualize, understand, organize, and find data that you want. By default, the pivot grid holds built-in comparers for all data types so that it will populate data in ascending/descending order according to its data type. You can also define your own custom comparer to view the data.
+Sorting enables you to quickly visualize, understand, organize, and find data that you want. By default, Pivot Grid holds built-in comparers for all data types so that it will populate data in ascending/descending order according to its data type. You can also define your own custom comparer to view the data.
**Sorting using custom comparer**
@@ -82,13 +82,13 @@ void MainWindow_Loaded(object sender, RoutedEventArgs e)
{% endhighlight %}
-
+
-_PivotGrid without ReverseOrderComparer_
+_Pivot Grid without ReverseOrderComparer_

-_PivotGrid with ReverseOrderComparer_
+_Pivot Grid with ReverseOrderComparer_
N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
\ No newline at end of file
diff --git a/wpf/Pivot-Grid/State-Persistence.md b/wpf/Pivot-Grid/State-Persistence.md
index 35577f96b..84f485168 100644
--- a/wpf/Pivot-Grid/State-Persistence.md
+++ b/wpf/Pivot-Grid/State-Persistence.md
@@ -9,7 +9,7 @@ documentation: ug
# State Persistence in WPF Pivot Grid
-The pivot grid allows you to maintain the collapsed or expanded state when the corresponding schema items are changed. This can be achieved using the `StatePersistence` property of the pivot grid control.
+Pivot Grid allows you to maintain the collapsed or expanded state when the corresponding schema items are changed. This can be achieved using the `StatePersistence` property of the control.
For XAML, refer to the following code sample.
@@ -79,11 +79,11 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
_PivotGrid with collapsed "Bike"_
-
+
_PivotGrid maintaining collapsed state of "Bike" after Schema change_
diff --git a/wpf/Pivot-Grid/Styles-and-Templates.md b/wpf/Pivot-Grid/Styles-and-Templates.md
index 7789ac215..4cb925005 100644
--- a/wpf/Pivot-Grid/Styles-and-Templates.md
+++ b/wpf/Pivot-Grid/Styles-and-Templates.md
@@ -53,9 +53,9 @@ The following properties of the cell can be customized.
Brush
-### Defining the cell styles in pivot grid
+### Defining the cell styles in Pivot Grid
-After defining the pivot grid control, raise the loaded event of pivot grid control. Inside the `PivotGrid_Loaded()` event, set the properties of cell styles of the pivot grid control.
+After defining Pivot Grid, raise the loaded event of the control. Inside the `PivotGrid_Loaded()` event, set the properties of cell styles of the control.
Refer to the following code snippet.
@@ -85,11 +85,11 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
## Cell templates
-Cell templates feature of pivot grid allows you to define the templates to change the appearance of elements, such as column, row, summary, and value cells that are present in the grid. The style for each element in the grid should be defined of `PivotGridTemplateCell` type. The customized template can be defined for the following properties of pivot grid:
+The cell templates feature of Pivot Grid allows you to define templates to change the appearance of elements, such as column, row, summary, and value cells that are present in the grid. The style for each element in the grid should be defined of `PivotGridTemplateCell` type. The customized template can be defined for the following properties of Pivot Grid:
* ColumnHeaderCellStyle
* RowHeaderCellStyle
@@ -97,13 +97,13 @@ Cell templates feature of pivot grid allows you to define the templates to chang
* SummaryCellStyle
* ValueCellStyle
-The expander’s in the grid can also be customized with any UIElement and it should be named as “PART_Expander” to perform drill-up and drill-down operations.
+The expander's in the grid can also be customized with any UIElement and it should be named as "PART_Expander" to perform drill-up and drill-down operations.
-### Defining cell templates in pivot grid
+### Defining cell templates in Pivot Grid
-After defining the pivot grid control, define your own style for row, column, value, and summary cells and assign that style to the corresponding property in the pivot grid control.
+After defining Pivot Grid, define your own style for row, column, value, and summary cells and assign that style to the corresponding property in the control.
-Here, the row header cells are defined with our own style by overriding an expander icon and cell's TextBlock. After defining the style, it is applied to `RowHeaderCellStyle` of the pivot grid control.
+Here, the row header cells are defined with our own style by overriding an expander icon and cell's TextBlock. After defining the style, it is applied to `RowHeaderCellStyle` of the control.
Refer to the following code snippet.
diff --git a/wpf/Pivot-Grid/Summary-Types.md b/wpf/Pivot-Grid/Summary-Types.md
index 3c6e565c0..57e5983f4 100644
--- a/wpf/Pivot-Grid/Summary-Types.md
+++ b/wpf/Pivot-Grid/Summary-Types.md
@@ -9,7 +9,7 @@ documentation: ug
# Summary Types in WPF Pivot Grid
-The pivot grid summarizes the data for various data types by using the `SummaryType` enumerator. SummaryType should be defined while defining the pivot calculation using `PivotComputationInfo` class to specify the type of summary. It holds the following summary types.
+Pivot Grid summarizes the data for various data types by using the `SummaryType` enumerator. SummaryType should be defined while defining the pivot calculation using `PivotComputationInfo` class to specify the type of summary. It holds the following summary types.
* **DoubleTotalSum**: Computes the sum of double or integer in pivot values for corresponding pivot item.
* **DoubleAverage**: Computes average of double or integer in pivot values for corresponding pivot item.
@@ -92,9 +92,9 @@ public partial class MainWindow: Window {

-## DisplayIfDiscreteValuesEqual summary type in pivot grid
+## DisplayIfDiscreteValuesEqual summary type in Pivot Grid
-**DisplayIfDiscreteValuesEqual** is a new summary type added to the `SummaryType` enumerator of the pivot grid control. This summary type displays the aggregated value in the pivot calculation column if all the values are common, else the default value will be displayed as **'*'**.
+**DisplayIfDiscreteValuesEqual** is a new summary type added to the `SummaryType` enumerator of Pivot Grid. This summary type displays the aggregated value in the pivot calculation column if all the values are common, else the default value will be displayed as **'*'**.
You can change the default value to any custom string of your choice by using the `PadString` property.
Set the SummaryType as **DisplayIfDiscreteValuesEqual** along with value for the `PadString` while defining pivot calculations in the pivot grid control.
diff --git a/wpf/Pivot-Grid/Support-to-improve-the-Scrolling-performance.md b/wpf/Pivot-Grid/Support-to-improve-the-Scrolling-performance.md
index 483115a70..1ea057013 100644
--- a/wpf/Pivot-Grid/Support-to-improve-the-Scrolling-performance.md
+++ b/wpf/Pivot-Grid/Support-to-improve-the-Scrolling-performance.md
@@ -9,7 +9,7 @@ documentation: ug
# Improved Deferred Scrolling in WPF Pivot Grid
-A support has been provided to improve the scrolling performance of pivot grid by updating the data only when user releases the thumb on scrolling. This can be achieved by the `EnableDeferredScrolling` property of the pivot grid control.
+A support has been provided to improve the scrolling performance of Pivot Grid by updating the data only when the user releases the thumb on scrolling. This can be achieved by the `EnableDeferredScrolling` property of the control.
For XAML, refer to the following code sample.
diff --git a/wpf/Pivot-Grid/Support-to-make-GrandTotals-always-visible.md b/wpf/Pivot-Grid/Support-to-make-GrandTotals-always-visible.md
index 40fe58bd4..e53d625f2 100644
--- a/wpf/Pivot-Grid/Support-to-make-GrandTotals-always-visible.md
+++ b/wpf/Pivot-Grid/Support-to-make-GrandTotals-always-visible.md
@@ -9,9 +9,9 @@ documentation: ug
# Show/Hide Grand Total in WPF Pivot Grid
-The pivot grid provides support to make the grand total row always visible in RowPivotsOnly mode.
+Pivot Grid provides support to make the grand total row always visible in RowPivotsOnly mode.
-This can be achieved by using the `GrandTotalRowAlwaysVisible` property of the pivot grid control. This property can be defined either in XAML or code-behind.
+This can be achieved by using the `GrandTotalRowAlwaysVisible` property of the control. This property can be defined either in XAML or code-behind.
For XAML, refer to the following code sample.
diff --git a/wpf/Pivot-Grid/Support-to-show-calculations-as-columns.md b/wpf/Pivot-Grid/Support-to-show-calculations-as-columns.md
index 5b485f53e..63080903f 100644
--- a/wpf/Pivot-Grid/Support-to-show-calculations-as-columns.md
+++ b/wpf/Pivot-Grid/Support-to-show-calculations-as-columns.md
@@ -9,7 +9,7 @@ documentation: ug
# Displaying Calculations in WPF Pivot Grid
-The pivot grid provides support to show the calculation values in column or row. This can be achieved by using the `ShowCalculationsAsColumns` property of pivot grid control or through simple uncheck or check option in the pivot schema designer.
+Pivot Grid provides support to show the calculation values in column or row. This can be achieved by using the `ShowCalculationsAsColumns` property of the control or through simple uncheck or check option in the pivot schema designer.
## Setting ShowCalculationsAsColumns property through code
diff --git a/wpf/Pivot-Grid/ToolTip.md b/wpf/Pivot-Grid/ToolTip.md
index 2f315a117..873e0ddbf 100644
--- a/wpf/Pivot-Grid/ToolTip.md
+++ b/wpf/Pivot-Grid/ToolTip.md
@@ -11,7 +11,7 @@ documentation: ug
Tooltip holds the respective cell value and its row and column information. It can be enabled or disabled using the `TooltipEnabled` Boolean property. User can customize the tooltip skin at the sample level and also can set the custom text.
-## Adding tooltip for entire pivot grid
+## Adding tooltip for entire Pivot Grid
The `ToolTipEnabled` property can be used to achieve this requirement and it can be mentioned in XAML or code-behind.
@@ -83,9 +83,9 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
-## Adding tooltip to specific areas in pivot grid
+## Adding tooltip to specific areas in Pivot Grid
This can be achieved by setting the appearance of tooltip with respect to each cell styles individually. Each style has its own `ToolTipEnabled` property.
@@ -145,25 +145,25 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
_PivotGrid shows tooltip for summary header_
-
+
_PivotGrid shows tooltip for column header_
-
+
_PivotGrid shows tooltip for row header_
-
+
_PivotGrid shows tooltip for summary values_
-## Adding custom tooltip for pivot grid
+## Adding custom tooltip for Pivot Grid
-Custom data templates can be set to the pivot grid controls tooltip using the `CustomToolTipTemplateKey` property. To do so, write a data template and bind the style's Tag property, and then set the key to the pivot grid control's `CustomToolTipTemplateKey` property.
+Custom data templates can be set to the Pivot Grid controls tooltip using the `CustomToolTipTemplateKey` property. To do so, write a data template and bind the style's Tag property, and then set the key to the pivot grid control's `CustomToolTipTemplateKey` property.
Refer to the following code snippets.
@@ -216,6 +216,6 @@ public partial class MainWindow: Window {
Similarly, you can define the custom tooltip to specific areas with respect to individual cell styles using the `CustomToolTipTemplateKey` property of row, column, summary header, and value cell styles.
-
+
N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
\ No newline at end of file
diff --git a/wpf/Pivot-Grid/Updating.md b/wpf/Pivot-Grid/Updating.md
index 8d863c1d8..97bb6d7e1 100644
--- a/wpf/Pivot-Grid/Updating.md
+++ b/wpf/Pivot-Grid/Updating.md
@@ -9,7 +9,7 @@ documentation: ug
# Updating in WPF Pivot Grid
-The pivot grid supports updating the values in the pivot grid in real time and it can be achieved through the `EnableUpdating` property. While handling the updating operations, the values will be calculated automatically and its total values will be reflected.
+The Pivot Grid supports updating the values in the control in real time and it can be achieved through the `EnableUpdating` property. While handling the updating operations, the values will be calculated automatically and its total values will be reflected.
* **EnableUpdating**: Gets/sets the Boolean value to enable updating.
* **ThrottleUpdateRate**: Gets/sets a millisecond value for the time taken between UI refreshes. Zero indicates immediate refresh of the UI without delays. Throttling the refresh rate can minimize CPU usage. Depending upon your updating rate, values from 300 to 500 milliseconds may give lower CPU usage.
@@ -85,9 +85,9 @@ public partial class MainWindow: Window {
{% endhighlight %}
-While updating the pivot grid control, user can throttle its updating speed by setting the `ThrottleUpdateRate` property. It gets the value in milliseconds as the time interval for UI refreshes to take place. Zero indicates immediate refresh of the UI without any delays. By throttling the refresh rate, you can minimize CPU usage. The default value is zero, but depending upon the user updating rate, values can be given from 300 to 500 milliseconds and it may achieve lower CPU usage.
+While updating the control, user can throttle its updating speed by setting the `ThrottleUpdateRate` property. It gets the value in milliseconds as the time interval for UI refreshes to take place. Zero indicates immediate refresh of the UI without any delays. By throttling the refresh rate, you can minimize CPU usage. The default value is zero, but depending upon the user updating rate, values can be given from 300 to 500 milliseconds and it may achieve lower CPU usage.
-To achieve this, define the pivot grid control and raise its loaded event. Inside the `PivotGrid_Loaded()` event, set the `ThrottleUpdateRate` property of the pivot grid control.
+To achieve this, define the control and raise its loaded event. Inside the `PivotGrid_Loaded()` event, set the `ThrottleUpdateRate` property of the control.
Refer to the following code sample.
@@ -137,6 +137,6 @@ public partial class MainWindow: Window {
{% endhighlight %}
-
+
N> You can refer to our [WPF Pivot Grid](https://www.syncfusion.com/wpf-controls/pivot-grid) feature tour page for its groundbreaking feature representations. You can also explore our [WPF Pivot Grid example](https://github.com/syncfusion/wpf-demos) to knows how to organizes and summarizes business data and displays the result in a cross-table format.
\ No newline at end of file
diff --git a/wpf/Pivot-Grid/sorting-events.md b/wpf/Pivot-Grid/sorting-events.md
index 0c62a0c94..eeab5f833 100644
--- a/wpf/Pivot-Grid/sorting-events.md
+++ b/wpf/Pivot-Grid/sorting-events.md
@@ -9,14 +9,14 @@ documentation: ug
# Sorting Events in WPF Pivot Grid
-The pivot grid provides certain sorting events to keep track of the sorted value fields, which is invoked before and after the sort operation.
+Pivot Grid provides certain sorting events to keep track of the sorted value fields, which is invoked before and after the sort operation.
-* **SortBegin**: An event that notifies before the sorting action begins and returns the index or position of value fields with its corresponding values in the pivot grid.
-* **SortCompleted**: An event that notifies after the sort option is completed and returns the index or position of the sorted value fields with its corresponding values in the pivot grid.
+* **SortBegin**: An event that notifies before the sorting action begins and returns the index or position of value fields with its corresponding values in Pivot Grid.
+* **SortCompleted**: An event that notifies after the sort option is completed and returns the index or position of the sorted value fields with its corresponding values in Pivot Grid.
**Using SortBegin and SortCompleted Events**
-To do so, create a new pivot grid, bind the ItemSource, and then define the PivotItems and PivotComputations. Invoke the `SortBegin` and `SortCompleted` events and then save the indexes to a separate list as illustrated below.
+To do so, create a new Pivot Grid, bind the ItemSource, and then define the PivotItems and PivotComputations. Invoke the `SortBegin` and `SortCompleted` events and then save the indexes to a separate list as illustrated below.
{% highlight C# %}