Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion uwp/Pivot-Grid/Common/Cell-Selection.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ documentation: ug

# Cell Selection in UWP Pivot Grid

The SfPivotGrid supports cell selection. You can select grid value cells like in Microsoft Excel. This can be achieved by setting the `AllowSelection` property of the SfPivotGrid to true.
The Pivot Grid supports cell selection. You can select grid value cells like in Microsoft Excel. This can be achieved by setting the `AllowSelection` property of the Pivot Grid to true.

On cell selection, the **SelectionChanged** event will be triggered and **PivotGridSelectionChangedEventArgs** will return an IEnumerable collection of column index, row index, and value index of the selected cell. The event argument will return the cell range and selection mode such as mouse-down, mouse-move, mouse-up, etc.

Expand Down
4 changes: 2 additions & 2 deletions uwp/Pivot-Grid/Common/Cell-Style-and-Template.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,11 @@ Me.PivotGrid1.ColumnHeaderStyle.FontSize = 13

## Cell template

The SfPivotGrid allows you to define custom template for modifying the default appearance of all cells in the SfPivotGrid. The style for each cell can be defined by using the `Style` property in `PivotGridCellStyle` and the style should be defined with the `PivotGridTemplateCell` type.
The Pivot Grid allows you to define custom template for modifying the default appearance of all cells in the control. The style for each cell can be defined by using the `Style` property in `PivotGridCellStyle` and the style should be defined with the `PivotGridTemplateCell` type.

**Defining cell template**

You can define your own style for column cells by using the `ColumnHeaderStyle` property, row cells by using the `RowHeaderStyle` property, value cells by using the `ValueCellStyle` property, and summary cells by using the `SummaryRowStyle` and `SummaryColumnStyle` properties. The defined template is assigned to the `Style` property of corresponding cell style in the SfPivotGrid control.
You can define your own style for column cells by using the `ColumnHeaderStyle` property, row cells by using the `RowHeaderStyle` property, value cells by using the `ValueCellStyle` property, and summary cells by using the `SummaryRowStyle` and `SummaryColumnStyle` properties. The defined template is assigned to the `Style` property of corresponding cell style in the Pivot Grid control.

The following code snippet illustrates how to customize the style of column header cell using the custom template.

Expand Down
4 changes: 2 additions & 2 deletions uwp/Pivot-Grid/Common/Conditional-Formatting.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ documentation: ug

# Conditional Formatting in UWP Pivot Grid

The SfPivotGrid supports conditional formatting which allows you to format the grid cells based on certain conditions. Conditional formats can be specified with the help of `ConditionalFormats` property through which required number of formatters of **PivotGridDataConditionalFormat** type can be added to the SfPivotGrid.
The Pivot Grid supports conditional formatting which allows you to format the grid cells based on certain conditions. Conditional formats can be specified with the help of `ConditionalFormats` property through which required number of formatters of **PivotGridDataConditionalFormat** type can be added to the control.

Using the `Conditions` property of PivotGridDataConditionalFormat instance, you can specify the filter criteria for cells and the style to be applied for the filtered cells with the help of `CellStyle` property. After defining these specifications, the respective styles are applied to only those cells that satisfy the specified condition.

The following code snippet illustrates how to add conditional formats in the SfPivotGrid.
The following code snippet illustrates how to add conditional formats in the Pivot Grid.

{% tabs %}

Expand Down
20 changes: 10 additions & 10 deletions uwp/Pivot-Grid/Common/Exporting.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ documentation: ug

# Exporting in UWP Pivot Grid

The SfPivotGrid can be exported to Microsoft Excel, Microsoft Word, PDF, and CSV file formats. By default, the grid style for export is obtained from the ExportingGridStyleInfo instance. To perform exporting operation, refer to the following assembly in the application.
The Pivot Grid can be exported to Microsoft Excel, Microsoft Word, PDF, and CSV file formats. By default, the grid style for export is obtained from the ExportingGridStyleInfo instance. To perform exporting operation, refer to the following assembly in the application.

* Syncfusion.SfPivotGridConverter.UWP

## Export to Excel

To export the SfPivotGrid contents to Excel, include the namespace **Syncfusion.UI.Xaml.PivotGridConverter** in the code-behind file. Then, create an instance of `ExportPivotGridToExcel` object to access the `ExportToDocument` method. `FileSavePicker` can be used to save the exported file in the preferred location.
To export the Pivot Grid contents to Excel, include the namespace **Syncfusion.UI.Xaml.PivotGridConverter** in the code-behind file. Then, create an instance of `ExportPivotGridToExcel` object to access the `ExportToDocument` method. `FileSavePicker` can be used to save the exported file in the preferred location.

Refer to the following code snippet to export the SfPivotGrid to Microsoft Excel.
Refer to the following code snippet to export the Pivot Grid to Microsoft Excel.

{% tabs %}

Expand All @@ -44,9 +44,9 @@ export.ExportToDocument("Sample")

## Export to Word

To export the SfPivotGrid contents to Word, include the namespace **Syncfusion.UI.Xaml.PivotGridConverter** in the code-behind file. Then, create an instance of `ExportPivotGridToWord` object to access the `ExportToDocument` method. `FileSavePicker` can be used to save the exported file in the preferred location.
To export the Pivot Grid contents to Word, include the namespace **Syncfusion.UI.Xaml.PivotGridConverter** in the code-behind file. Then, create an instance of `ExportPivotGridToWord` object to access the `ExportToDocument` method. `FileSavePicker` can be used to save the exported file in the preferred location.

Refer to the following code snippet to export the SfPivotGrid to Word document.
Refer to the following code snippet to export the Pivot Grid to Word document.

{% tabs %}

Expand Down Expand Up @@ -74,9 +74,9 @@ export.ExportToDocument("Sample")

## Export to PDF

To export the SfPivotGrid contents to PDF, include the namespace **Syncfusion.UI.Xaml.PivotGridConverter** in the code-behind file. Then, create an instance of `ExportPivotGridToPdf` object to access the `ExportToDocument` method. `FileSavePicker` can be used to save the exported file in the preferred location.
To export the Pivot Grid contents to PDF, include the namespace **Syncfusion.UI.Xaml.PivotGridConverter** in the code-behind file. Then, create an instance of `ExportPivotGridToPdf` object to access the `ExportToDocument` method. `FileSavePicker` can be used to save the exported file in the preferred location.

Refer to the following code snippet to export the SfPivotGrid to Word document.
Refer to the following code snippet to export the Pivot Grid to Word document.

{% tabs %}

Expand Down Expand Up @@ -104,9 +104,9 @@ export.ExportToDocument("Sample")

## Export to CSV

To export the SfPivotGrid contents to CSV, include the namespace **Syncfusion.UI.Xaml.PivotGridConverter** in the code-behind file. Then, create an instance of `ExportPivotGridToCsv` object to access the `ExportToDocument` method. `FileSavePicker` can be used to save the exported file in the preferred location.
To export the Pivot Grid contents to CSV, include the namespace **Syncfusion.UI.Xaml.PivotGridConverter** in the code-behind file. Then, create an instance of `ExportPivotGridToCsv` object to access the `ExportToDocument` method. `FileSavePicker` can be used to save the exported file in the preferred location.

Refer to the following code snippet to export the SfPivotGrid to CSV document.
Refer to the following code snippet to export the Pivot Grid to CSV document.

{% tabs %}

Expand All @@ -132,7 +132,7 @@ export.ExportToDocument("Sample")

![Export-csv-image](Exporting_images/Export-csv-image.png)

N> You can use a *Button* instance to the page and then specify the required code snippet to export the SfPivotGrid in the `Click` event handler method.
N> You can use a *Button* instance to the page and then specify the required code snippet to export the Pivot Grid in the `Click` event handler method.

A demo sample is available in the following location.

Expand Down
6 changes: 3 additions & 3 deletions uwp/Pivot-Grid/Common/Freeze-Headers.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ documentation: ug

# Freeze Headers in UWP Pivot Grid

The SfPivotGrid provides built-in support to freeze the column and row headers. This can be achieved by setting the `FreezeHeaders` property of SfPivotGrid to `true`.
The Pivot Grid provides built-in support to freeze the column and row headers. This can be achieved by setting the `FreezeHeaders` property of Pivot Grid to `true`.

Refer to the following code snippet to enable FreezeHeaders.

Expand All @@ -23,14 +23,14 @@ Refer to the following code snippet to enable FreezeHeaders.

{% highlight c# %}

// To freeze SfPivotGrid Headers
// To freeze Pivot Grid Headers
this.PivotGrid1.FreezeHeaders = true;

{% endhighlight %}

{% highlight vb %}

' To freeze SfPivotGrid Headers
' To freeze Pivot Grid Headers
Me.PivotGrid1.FreezeHeaders = True

{% endhighlight %}
Expand Down
26 changes: 13 additions & 13 deletions uwp/Pivot-Grid/Common/Grouping-Bar.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ documentation: ug

# Grouping Bar in UWP Pivot Grid

Grouping bar allows you to slice and dice the fields between column, row, value, and filter areas. It allows you to add, rearrange, or remove the fields to show the exact data required in the SfPivotGrid. The following are the different kinds of grouping bar available in the SfPivotGrid.
Grouping bar allows you to slice and dice the fields between column, row, value, and filter areas. It allows you to add, rearrange, or remove the fields to show the exact data required in the Pivot Grid. The following are the different kinds of grouping bar available in the control.

* **Filter Grouping Bar:** Holds the filter items of the SfPivotGrid control.
* **Value Grouping Bar:** Holds the value items of the SfPivotGrid control.
* **Column Grouping Bar:** Holds the column items of the SfPivotGrid control.
* **Row Grouping Bar:** Holds the row items of the SfPivotGrid control.
* **Filter Grouping Bar:** Holds the filter items of the Pivot Grid control.
* **Value Grouping Bar:** Holds the value items of the Pivot Grid control.
* **Column Grouping Bar:** Holds the column items of the Pivot Grid control.
* **Row Grouping Bar:** Holds the row items of the Pivot Grid control.

By default, the grouping bar is disabled in the SfPivotGrid control and it can be enabled by using the `ShowGroupingBar` property. The following code snippet defines how to enable the grouping bar.
By default, the grouping bar is disabled in the Pivot Grid control and it can be enabled by using the `ShowGroupingBar` property. The following code snippet defines how to enable the grouping bar.

{% tabs %}

Expand Down Expand Up @@ -109,7 +109,7 @@ Me.PivotGrid1.EnableGroupingBarSorting = False

{% endtabs %}

The following screenshot shows the SfPivotGrid without sorting icons.
The following screenshot shows the Pivot Grid without sorting icons.

![grouping-bar-without-sort-icon](Grouping-Bar_images/grouping-bar-without-sort-icon.png)

Expand Down Expand Up @@ -177,7 +177,7 @@ Me.PivotGrid1.GroupingBarBackground = New SolidColorBrush(Colors.BurlyWood)

**Grouping bar item background**

You can customize the background color of individual grouping bar items by defining the `GroupingBarItemBackground` property in the SfPivotGrid control.
You can customize the background color of individual grouping bar items by defining the `GroupingBarItemBackground` property in the Pivot Grid control.

{% tabs %}

Expand Down Expand Up @@ -207,11 +207,11 @@ Me.PivotGrid1.GroupingBarItemBackground = New SolidColorBrush(Colors.BurlyWood)

## Disabling specific grouping bar

The SfPivotGrid supports disabling the grouping bar of specific area as illustrated below.
The Pivot Grid supports disabling the grouping bar of specific area as illustrated below.

**Disabling row grouping bar**

The `EnableRowHeaderArea` property of the SfPivotGrid allows you to customize the visibility of grouping bar in the row header area. The following code snippet shows how to disable the row grouping bar.
The `EnableRowHeaderArea` property of the Pivot Grid allows you to customize the visibility of grouping bar in the row header area. The following code snippet shows how to disable the row grouping bar.

{% tabs %}

Expand Down Expand Up @@ -239,7 +239,7 @@ Me.PivotGrid1.EnableRowHeaderArea = False

**Disabling column grouping bar**

The `EnableColumnHeaderArea` property of the SfPivotGrid allows you to customize the visibility of grouping bar in the column header area. The following code snippet shows how to disable the column grouping bar.
The `EnableColumnHeaderArea` property of the Pivot Grid allows you to customize the visibility of grouping bar in the column header area. The following code snippet shows how to disable the column grouping bar.

{% tabs %}

Expand Down Expand Up @@ -267,7 +267,7 @@ Me.PivotGrid1.EnableColumnHeaderArea = False

**Disabling value grouping bar**

The `EnableValueHeaderArea` property of the SfPivotGrid allows you to customize the visibility of grouping bar in the value header area. The following code snippet shows how to disable the value grouping bar.
The `EnableValueHeaderArea` property of the Pivot Grid allows you to customize the visibility of grouping bar in the value header area. The following code snippet shows how to disable the value grouping bar.

{% tabs %}

Expand Down Expand Up @@ -295,7 +295,7 @@ Me.PivotGrid1.EnableValueHeaderArea = False

**Disabling filter grouping bar**

The `EnableFilterHeaderArea` property of the SfPivotGrid allows you to customize the visibility of grouping bar in the filter header area. The following code snippet shows how to disable the filter grouping bar.
The `EnableFilterHeaderArea` property of the Pivot Grid allows you to customize the visibility of grouping bar in the filter header area. The following code snippet shows how to disable the filter grouping bar.

{% tabs %}

Expand Down
2 changes: 1 addition & 1 deletion uwp/Pivot-Grid/Common/Hyperlink-Cells.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ documentation: ug

# Hyperlink Cells in UWP Pivot Grid

The SfPivotGrid allows hyperlinking of cells to retrieve detailed information about a particular cell. Hyperlink can be individually applied to the following cells:
The Pivot Grid allows hyperlinking of cells to retrieve detailed information about a particular cell. Hyperlink can be individually applied to the following cells:

* Column header cells.
* Row header cells.
Expand Down
4 changes: 2 additions & 2 deletions uwp/Pivot-Grid/Common/Localization.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ documentation: ug

# Localization in UWP Pivot Grid

Localization is the key feature for providing software solutions targeted at global users. SfPivotGrid allows users to localize the control to a specific locale and supports “resx” based localization.
Localization is the key feature for providing software solutions targeted at global users. Pivot Grid allows users to localize the control to a specific locale and supports “resx” based localization.

You should perform the following steps to localize the control.

Expand Down Expand Up @@ -75,7 +75,7 @@ End Class

## RTL

The SfPivotGrid provides RTL support to display the content from right to left direction by setting the `FlowDirection` property to **RightToLeft**.
The Pivot Grid provides RTL support to display the content from right to left direction by setting the `FlowDirection` property to **RightToLeft**.

{% tabs %}

Expand Down
4 changes: 2 additions & 2 deletions uwp/Pivot-Grid/Common/Theming.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ documentation: ug

# Theming in UWP Pivot Grid

Theming is the process of applying particular settings to visual elements of a control. Following built-in themes are supported in the SfPivotGrid control.
Theming is the process of applying particular settings to visual elements of a control. Following built-in themes are supported in the Pivot Grid control.

* Blend
* Lime
Expand All @@ -28,7 +28,7 @@ Theming is the process of applying particular settings to visual elements of a c
* VisualStudio2013
* VisualStudio2015

By using the `GridVisualStyle` property in the SfPivotGrid, you can set the visual style of the control. By default, the `Metro` theme is applied. The following code snippet shows how to change the visual style for the SfPivotGrid.
By using the `GridVisualStyle` property in the Pivot Grid, you can set the visual style of the control. By default, the `Metro` theme is applied. The following code snippet shows how to change the visual style for the Pivot Grid.

{% tabs %}

Expand Down
6 changes: 3 additions & 3 deletions uwp/Pivot-Grid/Common/Tooltip.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ documentation: ug

# Tooltip in UWP Pivot Grid

The SfPivotGrid additionally displays the cell information within a tooltip when the mouse pointer is moved over header cells or value cells.
The Pivot Grid additionally displays the cell information within a tooltip when the mouse pointer is moved over header cells or value cells.

## Header cell tooltip

The SfPivotGrid provides information about header cells when the mouse pointer is moved over it. Tooltip over header cells can be enabled by setting the `ShowHeaderCellsToolTip` property of the SfPivotGrid to `true` as shown in the following code snippet.
The Pivot Grid provides information about header cells when the mouse pointer is moved over it. Tooltip over header cells can be enabled by setting the `ShowHeaderCellsToolTip` property of the control to `true` as shown in the following code snippet.

{% tabs %}

Expand Down Expand Up @@ -41,7 +41,7 @@ Me.PivotGrid1.ShowHeaderCellsToolTip = True

## Value cell tooltip

The SfPivotGrid provides information about value cells when the mouse pointer is moved over it. Tooltip over value cells can be enabled by setting the `ShowValueCellToolTip` property of the SfPivotGrid to `true` as shown in the following code snippet.
The Pivot Grid provides information about value cells when the mouse pointer is moved over it. Tooltip over value cells can be enabled by setting the `ShowValueCellToolTip` property of the Pivot Grid to `true` as shown in the following code snippet.

{% tabs %}

Expand Down
2 changes: 1 addition & 1 deletion uwp/Pivot-Grid/OLAP/All-Level-Type-Member.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ documentation: ug

# All-Level Type Member in UWP Pivot Grid

This feature enables you to display the “All” level type member across the rows and columns in the SfPivotGrid. This member behaves as parent to other members in its hierarchy by controlling their visibility through an expander.
This feature enables you to display the “All” level type member across the rows and columns in the Pivot Grid. This member behaves as parent to other members in its hierarchy by controlling their visibility through an expander.

To display the “All” level type member, set the `ShowLevelTypeAll` property to true as shown in the following code snippet. By default, it is set as false.

Expand Down
Loading