From 8d0e47407be6dc406344def4c2e3ece138791cc6 Mon Sep 17 00:00:00 2001 From: Dinesh Rangasamy Date: Wed, 9 Sep 2026 15:30:13 +0530 Subject: [PATCH 1/2] WPF-Redundant-OLAP-Grid : Avoid Redundant words in WPF OLAP Grid --- wpf/OLAP-Grid/Cell-Selection.md | 4 +- wpf/OLAP-Grid/Conditional-Formatting.md | 2 +- wpf/OLAP-Grid/Data-Source.md | 10 ++--- wpf/OLAP-Grid/Drill-Position.md | 2 +- wpf/OLAP-Grid/Drill-UpDown.md | 4 +- wpf/OLAP-Grid/Exporting.md | 12 +++--- wpf/OLAP-Grid/Freeze-Headers.md | 6 +-- wpf/OLAP-Grid/Getting-Started.md | 42 +++++++++---------- wpf/OLAP-Grid/Grid-Layouts.md | 18 ++++---- wpf/OLAP-Grid/Grid-Style-Dialog.md | 14 +++---- wpf/OLAP-Grid/Hyperlink-Cells.md | 6 +-- .../Key-Performance-Indicator-KPI.md | 2 +- wpf/OLAP-Grid/Localization.md | 6 +-- wpf/OLAP-Grid/Member-Properties.md | 4 +- wpf/OLAP-Grid/Overview.md | 4 +- wpf/OLAP-Grid/Paging.md | 8 ++-- .../Support-for-All-Level-Type-Member.md | 4 +- wpf/OLAP-Grid/Theming.md | 2 +- wpf/OLAP-Grid/ToolTip.md | 8 ++-- wpf/OLAP-Grid/XAML-Configuration.md | 4 +- 20 files changed, 81 insertions(+), 81 deletions(-) diff --git a/wpf/OLAP-Grid/Cell-Selection.md b/wpf/OLAP-Grid/Cell-Selection.md index abeb9b45a..c4fcafa7b 100644 --- a/wpf/OLAP-Grid/Cell-Selection.md +++ b/wpf/OLAP-Grid/Cell-Selection.md @@ -9,7 +9,7 @@ documentation: ug # Cell Selection in WPF OLAP Grid -The OLAP grid supports Excel-like cell selection, where you can select grid value cells as in the Microsoft Excel. This can be achieved by setting the `AllowSelection` property of the OLAP grid to true. +The OLAP Grid supports Excel-like cell selection, where you can select grid value cells as in the Microsoft Excel. This can be achieved by setting the `AllowSelection` property of the control to true. On cell selection, an event named **"SelectionChanged"** will be triggered, and the **"OlapGridSelectionChangedEventArgs"** returns an IEnumerable collection of column, row, and value of the corresponding selected cell. The event argument also returns the cell range and selection reason such as mouse down, mouse move, and mouse up. @@ -82,7 +82,7 @@ End Sub {% endtabs %} -![Cell selection in OlapGrid](Cell-Selection_images/Cell-Selection_img1.png) +![Cell selection](Cell-Selection_images/Cell-Selection_img1.png) A sample demo is available in the following location. diff --git a/wpf/OLAP-Grid/Conditional-Formatting.md b/wpf/OLAP-Grid/Conditional-Formatting.md index 8e8cdcddb..08952b8f7 100644 --- a/wpf/OLAP-Grid/Conditional-Formatting.md +++ b/wpf/OLAP-Grid/Conditional-Formatting.md @@ -97,7 +97,7 @@ Me.olapgrid1.DataBind() {% endtabs %} -![Conditional formats applied in OlapGrid](Conditional-Formatting_images/Conditional-Formatting_img1.png) +![Conditional formats applied](Conditional-Formatting_images/Conditional-Formatting_img1.png) A sample demo is available in the following location. diff --git a/wpf/OLAP-Grid/Data-Source.md b/wpf/OLAP-Grid/Data-Source.md index a09d67c2e..515ae1054 100644 --- a/wpf/OLAP-Grid/Data-Source.md +++ b/wpf/OLAP-Grid/Data-Source.md @@ -9,7 +9,7 @@ documentation: ug # Data Source in WPF OLAP Grid -## Binding OLAP grid to offline cube +## Binding OLAP Grid to offline cube To connect to an OLAP cube available in the local machine, set the physical path of the cube set in the connection string. The following code sample illustrates the same. @@ -20,7 +20,7 @@ OlapDataManager DataManager = new OlapDataManager(connectionString); {% endhighlight %} -## Binding OLAP grid to cube in local SQL Server +## Binding OLAP Grid to cube in local SQL Server To connect to the OLAP cube available in SQL Server Analysis Service in the local machine, set the server name and database name in the connection string. If you have any credentials to connect your cube, then set the user ID and password attributes accordingly. The following code sample illustrates the same. @@ -31,7 +31,7 @@ OlapDataManager DataManager = new OlapDataManager(connectionString); {% endhighlight %} -## Binding OLAP grid to cube in online SQL Server +## Binding OLAP Grid to cube in online SQL Server To connect to the OLAP cube available in SQL Server Analysis Service in online server through **XML/A**, set the host server link and database name in the connection string. If you have any credentials to connect your cube, then set the user ID and password attributes accordingly. The following code sample illustrates the same. @@ -42,7 +42,7 @@ OlapDataManager DataManager = new OlapDataManager(connectionString); {% endhighlight %} -## Binding OLAP grid to cube in online Mondrian Server +## Binding OLAP Grid to cube in online Mondrian Server To connect to the OLAP cube available in Mondrian Server through **XML/A**, set the host server link and database name in the connection string. If you have any credentials to connect your cube, then set the user ID and password attributes accordingly. The following code sample illustrates the same. @@ -54,7 +54,7 @@ DataManager.DataProvider.ProviderName = Syncfusion.Olap.DataProvider.Providers.M {% endhighlight %} -## Binding OLAP grid to cube in online ActivePivot Server +## Binding OLAP Grid to cube in online ActivePivot Server To connect to the OLAP cube available in ActivePivot Server through **XML/A**, set the host server link and database name in the connection string. If you have any credentials to connect your cube, then set the user ID and password attributes accordingly. The following code sample illustrates the same. diff --git a/wpf/OLAP-Grid/Drill-Position.md b/wpf/OLAP-Grid/Drill-Position.md index 5a410cbf0..18e4d5170 100644 --- a/wpf/OLAP-Grid/Drill-Position.md +++ b/wpf/OLAP-Grid/Drill-Position.md @@ -7,7 +7,7 @@ control: OLAP Grid documentation: ug --- -# Drill Position in WPF OLAP Grid +# Drill Position in WPF OLAP Grid Drill position allows users to drill only the current position of the selected member and exclude the drilled data of selected member in other positions by using the MDX query. This can be enabled by setting the **"DrillType"** enumeration to **"DrillPosition"** in the OLAP report. diff --git a/wpf/OLAP-Grid/Drill-UpDown.md b/wpf/OLAP-Grid/Drill-UpDown.md index 31325e5a4..a544a7661 100644 --- a/wpf/OLAP-Grid/Drill-UpDown.md +++ b/wpf/OLAP-Grid/Drill-UpDown.md @@ -7,9 +7,9 @@ control: OLAP Grid documentation: ug --- -# Drill Down/Up in WPF OLAP Grid +# Drill Down/Up in WPF OLAP Grid -This is the basic feature of OLAP grid through which the amount of information can be limited. It allows you to drill down to access the detailed level of data, or drill up to see the summarized data using the expanders present in the grid. The expander here refers to the plus or minus or arrow sign present in the grid prior to a member. The expanders can be made hidden by setting the `ShowExpander` property of the OLAP report to **"false"**. +Drill down/up is the basic feature of OLAP Grid through which the amount of information can be limited. It allows you to drill down to access the detailed level of data, or drill up to see the summarized data using the expanders present in the grid. The expander here refers to the plus or minus or arrow sign present in the grid prior to a member. The expanders can be made hidden by setting the `ShowExpander` property of the OLAP report to **"false"**. {% tabs %} diff --git a/wpf/OLAP-Grid/Exporting.md b/wpf/OLAP-Grid/Exporting.md index c58000d42..fdf81e1af 100644 --- a/wpf/OLAP-Grid/Exporting.md +++ b/wpf/OLAP-Grid/Exporting.md @@ -9,11 +9,11 @@ documentation: ug # Exporting in WPF OLAP Grid -The OLAP grid can be exported to Microsoft Excel, Microsoft Word, PDF, and CSV file formats. To perform exporting operation, add the following assembly along with default assemblies in the reference folder. +The OLAP Grid can be exported to Microsoft Excel, Microsoft Word, PDF, and CSV file formats. To perform exporting operation, add the following assembly along with default assemblies in the reference folder. * Syncfusion.OlapGridConverter.Wpf -The OLAP grid can be exported using the following methods. +The control can be exported using the following methods. **Excel export** @@ -57,7 +57,7 @@ End If {% endtabs %} -![WPF OLAPGrid report export to Excel](Exporting_images/Export_img1.png) +![Report exported to Excel](Exporting_images/Export_img1.png) **Word export** @@ -101,7 +101,7 @@ End If {% endtabs %} -![WPF OLAPGrid report export to Word](Exporting_images/Export_img2.png) +![Report exported to Word](Exporting_images/Export_img2.png) **PDF export** @@ -146,7 +146,7 @@ End If {% endtabs %} -![WPF OLAPGrid report export to PDF](Exporting_images/Export_img3.png) +![Report exported to PDF](Exporting_images/Export_img3.png) **CSV export** @@ -190,7 +190,7 @@ End If {% endtabs %} -![WPF OLAPGrid report export to CSV](Exporting_images/Export_img4.png) +![Report exported to CSV](Exporting_images/Export_img4.png) A sample demo is available in the following location. diff --git a/wpf/OLAP-Grid/Freeze-Headers.md b/wpf/OLAP-Grid/Freeze-Headers.md index aec8e97ad..e7314c8ad 100644 --- a/wpf/OLAP-Grid/Freeze-Headers.md +++ b/wpf/OLAP-Grid/Freeze-Headers.md @@ -1,6 +1,6 @@ --- layout: post -title: Freeze Headers in WPF OLAP Grid | Syncfusion® +title: Freeze Headers in WPF OLAP Grid | Syncfusion® description: The freeze headers support in OLAP Grid allows freezing the column and row headers so they remain visible while scrolling the grid. platform: wpf control: OLAP Grid @@ -9,7 +9,7 @@ documentation: ug # Freeze Headers in WPF OLAP Grid -The OLAP grid provides built-in support to freeze the column and row headers. This can be achieved by setting the `FreezeHeaders` property of OLAP grid to **"true"**. +The OLAP Grid provides built-in support to freeze the column and row headers. This can be achieved by setting the `FreezeHeaders` property of the control to **"true"**. {% tabs %} @@ -36,7 +36,7 @@ Me.OlapGrid1.FreezeHeaders = True {% endtabs %} -![Enables the freeze headers in OlapGrid](Freeze-Headers_images/Freeze-Headers_img1.png) +![Freeze headers enabled](Freeze-Headers_images/Freeze-Headers_img1.png) A sample demo is available in the following location. diff --git a/wpf/OLAP-Grid/Getting-Started.md b/wpf/OLAP-Grid/Getting-Started.md index c54dfcc5b..f2fde1657 100644 --- a/wpf/OLAP-Grid/Getting-Started.md +++ b/wpf/OLAP-Grid/Getting-Started.md @@ -7,22 +7,22 @@ control: OLAP Grid documentation: ug --- -# Getting Started with WPF OLAP Grid +# Getting Started with WPF OLAP Grid >**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 [License Guidelines](https://help.syncfusion.com/wpf/licensing/overview) to learn about registering Syncfusion® license key in your WPF application to use the components. -This section covers the information required to create a simple OLAP grid bound to the OLAP data source. +This section covers the information required to create a simple OLAP Grid bound to the OLAP data source. ## Through Visual Studio Open Visual Studio IDE and go 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 Visual Studio IDE. From the Visual Studio Toolbox, drag and drop the OLAP grid under the **Syncfusion® BI WPF** tag. It will automatically add the required assemblies into the application. +After creating the WPF application, go to View menu and select Toolbox option. Now, the Toolbox will appear inside Visual Studio IDE. From the Visual Studio Toolbox, drag and drop the OLAP Grid under the **Syncfusion® BI WPF** tag. It will automatically add the required assemblies into the application. -![WPF OLAPGrid Getting-Started Image0](Getting-Started_images/Getting-Started_img0.png) +![Getting-Started Image0](Getting-Started_images/Getting-Started_img0.png) -Add a **Name** to the OLAP grid component for accessing it through code-behind as shown in the following code sample. +Add a **Name** to the OLAP Grid component for accessing it through code-behind as shown in the following code sample. {% highlight xaml %} @@ -151,7 +151,7 @@ End Class Run the application. The following output will be generated. -![WPF OLAPGrid Getting-Started Image1](Getting-Started_images/Getting-Started_img1.png) +![Getting started output](Getting-Started_images/Getting-Started_img1.png) ## Through Expression Blend @@ -167,11 +167,11 @@ Select the **Project** tab available in the left corner of the Blend IDE. Right- 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>\<framework version>\ -On adding the above assemblies, the OLAP grid control will be added under the **Assets** tab automatically. Now, choose the **Assets** tab and drag the OLAP grid to the designer. +On adding the above assemblies, the control will be added under the **Assets** tab automatically. Now, choose the **Assets** tab and drag the OLAP Grid to the designer. -![WPF OLAPGrid Getting-Started Image2](Getting-Started_images/Getting-Started_img2.png) +![Adding the control under the Assets tab](Getting-Started_images/Getting-Started_img2.png) -Add a **Name** to the OLAP grid component for accessing it through code-behind as shown in the following code sample. +Add a **Name** to the OLAP Grid component for accessing it through code-behind as shown in the following code sample. {% highlight xaml %} @@ -304,7 +304,7 @@ End Class Run the application. The following output will be generated. -![WPF OLAPGrid Getting-Started Image1](Getting-Started_images/Getting-Started_img1.png) +![Getting-Started Image1](Getting-Started_images/Getting-Started_img1.png) ## Through code-behind @@ -321,7 +321,7 @@ To add the dependency assemblies within the application, right-click the **Refer 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>\<framework version>\ -Include the following namespace in code-behind for OlapGrid, OlapDataManager, and OlapReport. +Include the following namespaces in code-behind for the OLAP Grid, OlapDataManager, and OlapReport. * Syncfusion.Windows.Grid.Olap * Syncfusion.Olap.Manager @@ -445,23 +445,23 @@ End Class Run the application. The following output will be generated. -![WPF OLAPGrid Getting-Started Image1](Getting-Started_images/Getting-Started_img1.png) +![Getting-Started Image1](Getting-Started_images/Getting-Started_img1.png) ## Design-time binding -Design-time binding support for OLAP grid allows you to reduce the time spent on creating and customizing the report. Normally, it takes 5 to 10 minutes for creating a report and in the case of unfamiliar cubes it may extend further, but by using design-time support you can create a report in a couple of minutes. The following section explain how to create a report during design-time. +Design-time binding support for OLAP Grid allows you to reduce the time spent on creating and customizing the report. Normally, it takes 5 to 10 minutes for creating a report and in the case of unfamiliar cubes it may extend further, but by using design-time support you can create a report in a couple of minutes. The following section explains how to create a report during design-time. -First drag the OLAP grid control from the toolbox to the Visual Studio designer surface. +First drag the OLAP Grid from the toolbox to the Visual Studio designer surface. -![WPF OLAPGrid Getting-Started Image3](Getting-Started_images/Getting-Started_img3.png) +![Getting-Started Image3](Getting-Started_images/Getting-Started_img3.png) -Right-click the OLAP grid available in the designer and go to **Configure data source > Create/Edit data source…** option in the context menu. Now, the **Data Source Properties** wizard opens. +Right-click the control available in the designer and go to **Configure data source > Create/Edit data source…** option in the context menu. Now, the **Data Source Properties** wizard opens. -![WPF OLAPGrid Getting-Started Image4](Getting-Started_images/Getting-Started_img4.png) +![Getting-Started Image4](Getting-Started_images/Getting-Started_img4.png) From the **Data Source Properties** wizard, select the connection type. If you want to connect to SSAS, select **Use server name and database to connect to a server** and specify the necessary information to connect to the server. If you want to connect to an offline cube, select **Use a connection string to connect to a server** and enter your connection string path. -![WPF OLAPGrid Getting-Started Image5](Getting-Started_images/Getting-Started_img5.png) +![Getting-Started Image5](Getting-Started_images/Getting-Started_img5.png) If you want to test the connection, click the **Test Connection** button that is displayed on the bottom-left corner of the window. Click the **Next** button, to proceed. @@ -469,11 +469,11 @@ N> The next button is enabled only when any one of the connection options is fil When the connection is valid, it displays the summary page of the **Data Source Properties** wizard. When you create a query for the first time, the MDX query textbox in the summary page is empty. When you edit an existing query, it displays the current query in the text box. -![WPF OLAPGrid Getting-Started Image6](Getting-Started_images/Getting-Started_img6.png) +![Getting-Started Image6](Getting-Started_images/Getting-Started_img6.png) For creating or editing a query, click the **Create/Edit** link that is displayed on the top-right side of the MDX query textbox. This opens a **Query Designer** dialog. -![WPF OLAPGrid Getting-Started Image7](Getting-Started_images/Getting-Started_img7.png) +![Getting-Started Image7](Getting-Started_images/Getting-Started_img7.png) When you edit an existing query, it displays the required dimensions in the specific axis of the query designer and the preview of that query is displayed in a grid control. @@ -483,7 +483,7 @@ Drag and drop dimensions to frame a new query. Then, click OK, to save the query The summary page of the **Data Source Properties** wizard displays the resultant MDX query. -![WPF OLAPGrid Getting-Started Image8](Getting-Started_images/Getting-Started_img8.png) +![Getting-Started Image8](Getting-Started_images/Getting-Started_img8.png) Click **Finish** and run the application. diff --git a/wpf/OLAP-Grid/Grid-Layouts.md b/wpf/OLAP-Grid/Grid-Layouts.md index 7899c732e..61b3a3bee 100644 --- a/wpf/OLAP-Grid/Grid-Layouts.md +++ b/wpf/OLAP-Grid/Grid-Layouts.md @@ -9,9 +9,9 @@ documentation: ug # Grid Layouts in WPF OLAP Grid -The position of summary cells in the OLAP grid can be customized with the help of grid layouts. It can be positioned at the top or bottom of each parent member. +The position of summary cells in the OLAP Grid can be customized with the help of grid layouts. It can be positioned at the top or bottom of each parent member. -The following are the five different types of layouts supported by the OLAP grid: +The following are the five different types of layouts supported by the control: * Normal layout. * Excel-like layout. @@ -21,7 +21,7 @@ The following are the five different types of layouts supported by the OLAP grid **Normal layout** -Normal layout is the default layout of OLAP grid. In normal layout, the summary cells are positioned at the bottom of each parent member and the child members are positioned adjacent to it. +Normal layout is the default layout of the control. In normal layout, the summary cells are positioned at the bottom of each parent member and the child members are positioned adjacent to it. {% tabs %} @@ -41,7 +41,7 @@ Me.OlapGrid1.Layout = GridLayout.Normal {% endtabs %} -![OlapGrid in normal layout](Grid-Layouts_images/Grid-Layouts_img1.png) +![Normal layout](Grid-Layouts_images/Grid-Layouts_img1.png) **Excel-like layout** @@ -65,13 +65,13 @@ Me.OlapGrid1.Layout = GridLayout.ExceLikeLayout {% endtabs %} -![OlapGrid in ExceLikeLayout](Grid-Layouts_images/Grid-Layouts_img2.png) +![Excel-like layout](Grid-Layouts_images/Grid-Layouts_img2.png) **Excel-like layout with member properties** This layout is used to display member properties along with dimension members. These properties appear adjacent to each member. -N> This layout is applicable only for members having properties defined in the OLAP cube and those members are bound to the OLAP grid through the OLAP report. +N> This layout is applicable only for members having properties defined in the OLAP cube and those members are bound to the control through the OLAP report. {% tabs %} @@ -91,7 +91,7 @@ Me.OlapGrid1.Layout = GridLayout.ExcelLikeLayoutWithMemberProperties {% endtabs %} -![OlapGrid in ExceLikeLayout with member properties](Grid-Layouts_images/Grid-Layouts_img3.png) +![Excel-like layout with member properties](Grid-Layouts_images/Grid-Layouts_img3.png) **Normal top summary layout** @@ -115,7 +115,7 @@ Me.OlapGrid1.Layout = GridLayout.NormalTopSummary {% endtabs %} -![OlapGrid in NormalTopSummary layout](Grid-Layouts_images/Grid-Layouts_img4.png) +![Normal top summary layout](Grid-Layouts_images/Grid-Layouts_img4.png) **No summaries layout** @@ -139,7 +139,7 @@ Me.OlapGrid1.Layout = GridLayout.NoSummaries {% endtabs %} -![OlapGrid in NoSummaries layout](Grid-Layouts_images/Grid-Layouts_img5.png) +![No summaries layout](Grid-Layouts_images/Grid-Layouts_img5.png) A sample demo is available in the following location. diff --git a/wpf/OLAP-Grid/Grid-Style-Dialog.md b/wpf/OLAP-Grid/Grid-Style-Dialog.md index e8cca55dd..4b4e5440a 100644 --- a/wpf/OLAP-Grid/Grid-Style-Dialog.md +++ b/wpf/OLAP-Grid/Grid-Style-Dialog.md @@ -9,14 +9,14 @@ documentation: ug # Grid Style Dialog in WPF OLAP Grid -The OLAP grid can be formatted the following ways: +The OLAP Grid can be formatted in the following ways: * Style dialog. * Configuring the properties of cell style. ## Style dialog -The OLAP grid style dialog is used to format the cells of the control. Styling can be applied to column headers, row headers, summary cells, and value cells. The following properties of headers and summary cells can be formatted: +The OLAP Grid style dialog is used to format the cells of the control. Styling can be applied to column headers, row headers, summary cells, and value cells. The following properties of headers and summary cells can be formatted: * Background color * Foreground color @@ -32,7 +32,7 @@ The following are the properties of value cells that can be formatted: ![Grid Style Dialog](Grid-Style-Dialog_images/Grid-Style-Dialog_img1.png) -The following code sample will launch the OLAP grid style dialog. +The following code sample will launch the grid style dialog. {% tabs %} @@ -54,7 +54,7 @@ Me.OlapGrid1.ShowStyleDialog() ## Configuring the properties of cell style -The following properties allow the OLAP grid cell to be customized, so that it appears in a custom style rather than the default one. +The following properties allow the cells to be customized, so that they appear in a custom style rather than the default one. * **Background**: Gets or sets the background color of the cell. * **FontFamily**: Gets or sets the font family of the cell. @@ -62,7 +62,7 @@ The following properties allow the OLAP grid cell to be customized, so that it a * **FontWeight**: Gets or sets the font weight of the cell. * **Foreground**: Gets or sets the foreground color of the cell. -The column, row, summary, and value cells of OLAP grid can be formatted independently using the following properties. +The column, row, summary, and value cells of the control can be formatted independently using the following properties. * ColumnHeaderStyle * RowHeaderStyle @@ -96,7 +96,7 @@ Me.OlapGrid1.SummaryColumnStyle.Background = New SolidColorBrush(Color.FromRgb(2 {% endtabs %} -The value cell text alignment can be changed using the following property of the OLAP grid. +The value cell text alignment can be changed using the following property of the control. {% tabs %} @@ -116,7 +116,7 @@ Me.OlapGrid1.ValueCellTextAlignment = HorizontalAlignment.Center {% endtabs %} -![Customized OlapGrid](Grid-Style-Dialog_images/Grid-Style-Dialog_img2.png) +![Customized grid](Grid-Style-Dialog_images/Grid-Style-Dialog_img2.png) A sample demo is available in the following location. diff --git a/wpf/OLAP-Grid/Hyperlink-Cells.md b/wpf/OLAP-Grid/Hyperlink-Cells.md index 35e11bad8..1fe5e8d72 100644 --- a/wpf/OLAP-Grid/Hyperlink-Cells.md +++ b/wpf/OLAP-Grid/Hyperlink-Cells.md @@ -9,7 +9,7 @@ documentation: ug # Hyperlink Cells in WPF OLAP Grid -The OLAP grid allows hyperlinking of cells to retrieve a detailed information about a particular cell. The OLAP grid generates a separate event called **"LinkClick"** for the clicked hyperlink cell and the **"LinkLabelClickEventHander"** will return the clicked OlapGridCellInfo. +The OLAP Grid allows hyperlinking of cells to retrieve detailed information about a particular cell. The control generates a separate event called **"LinkClick"** for the clicked hyperlink cell and the **"LinkLabelClickEventHander"** will return the clicked OlapGridCellInfo. The hyperlink cell’s property can be applied to the following regions: @@ -98,9 +98,9 @@ End Sub {% endtabs %} -![Hyperlink is enabled for value cells in OlapGrid](Hyperlink-Cells_images/Hyperlink-Cells_img1.png) +![Hyperlink is enabled for value cells](Hyperlink-Cells_images/Hyperlink-Cells_img1.png) -![Hyperlink is enabled for column header cells in OlapGrid](Hyperlink-Cells_images/Hyperlink-Cells_img2.png) +![Hyperlink is enabled for column header cells](Hyperlink-Cells_images/Hyperlink-Cells_img2.png) ![Hyperlink is enabled for row header cells in OlapGrid](Hyperlink-Cells_images/Hyperlink-Cells_img3.png) diff --git a/wpf/OLAP-Grid/Key-Performance-Indicator-KPI.md b/wpf/OLAP-Grid/Key-Performance-Indicator-KPI.md index 97d6f7b70..d77629602 100644 --- a/wpf/OLAP-Grid/Key-Performance-Indicator-KPI.md +++ b/wpf/OLAP-Grid/Key-Performance-Indicator-KPI.md @@ -78,7 +78,7 @@ End Function {% endtabs %} -![OlapGrid with KPI](Key-Performance-Indicator-KPI_images/Key-Performance-Indicator-KPI_img1.png) +![KPIs displayed in the grid](Key-Performance-Indicator-KPI_images/Key-Performance-Indicator-KPI_img1.png) A sample demo is available in the following location. diff --git a/wpf/OLAP-Grid/Localization.md b/wpf/OLAP-Grid/Localization.md index 76a28a47c..56f66d7e3 100644 --- a/wpf/OLAP-Grid/Localization.md +++ b/wpf/OLAP-Grid/Localization.md @@ -9,7 +9,7 @@ documentation: ug # Localization in WPF OLAP Grid -Localization is the key feature for providing software solutions targeted at global users. The OLAP grid 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. The OLAP Grid allows users to localize the control to a specific locale and supports "resx" based localization. The following steps should be performed to localize the control: @@ -63,7 +63,7 @@ public MainWindow() ## RTL support -The RTL support for OLAP grid is used to display the content from right-to-left by setting the `FlowDirection` property to "RightToLeft". The following code sample explains how to set this property. +The RTL support for OLAP Grid is used to display the content from right-to-left by setting the `FlowDirection` property to "RightToLeft". The following code sample explains how to set this property. {% tabs %} @@ -87,7 +87,7 @@ Me.olapGrid.FlowDirection = System.Windows.FlowDirection.RightToLeft; {% endtabs %} -![Localized OlapGrid and also display the data from right to left](Localization_images/Localization_img53.png) +![Localized content displayed from right to left](Localization_images/Localization_img53.png) A sample is locally available in the following location. diff --git a/wpf/OLAP-Grid/Member-Properties.md b/wpf/OLAP-Grid/Member-Properties.md index c3c480e22..a537fbccc 100644 --- a/wpf/OLAP-Grid/Member-Properties.md +++ b/wpf/OLAP-Grid/Member-Properties.md @@ -9,7 +9,7 @@ documentation: ug # Member Properties in WPF OLAP Grid -The OLAP grid allows binding of members along with their properties. Member properties cover the basic information about each member in each tuple. This basic information includes the member name, parent level, number of children, and so on. Member properties are available for all members at a given level. To display the member properties along with the dimension member, OLAP report requires member properties to be defined in the concerned dimension element. Also, the OLAP grid layout should be set to **"ExcelLikeLayoutWithMemberProperties"**. +The OLAP Grid allows binding of members along with their properties. Member properties cover the basic information about each member in each tuple. This basic information includes the member name, parent level, number of children, and so on. Member properties are available for all members at a given level. To display the member properties along with the dimension member, OLAP report requires member properties to be defined in the concerned dimension element. Also, the grid layout should be set to **"ExcelLikeLayoutWithMemberProperties"**. {% tabs %} @@ -79,7 +79,7 @@ End Function ![Member-Properties_img1](Member-Properties_images/Member-Properties_img1.png) -To display member properties through the header tooltip, the following property of OLAP grid should be set to true. +To display member properties through the header tooltip, the following property of the control should be set to true. {% tabs %} diff --git a/wpf/OLAP-Grid/Overview.md b/wpf/OLAP-Grid/Overview.md index 033aa33e3..42cba3409 100644 --- a/wpf/OLAP-Grid/Overview.md +++ b/wpf/OLAP-Grid/Overview.md @@ -9,12 +9,12 @@ documentation: ug # About Syncfusion WPF OLAP Grid Control -The OLAP grid is an easily configurable, presentation-quality business control that reads OLAP data source to create multi-dimensional views for analyzing and satisfying business user needs. +The WPF OLAP Grid is an easily configurable, presentation-quality business control that reads OLAP data source to create multi-dimensional views for analyzing and satisfying business user needs. ## Key features * Drill up/down: Provides multi-level drill up/down capability for both row and column headers. * Layouts: Supports different grid layouts such as normal layout, Excel-like layout, Excel-like layout With member properties, normal top summary, and no summaries layout. * Conditional formatting: You can define certain conditions, format cell's font, color, and border settings. -* Exporting: You can export the OLAP grid to Microsoft Excel, Microsoft Word, PDF, and CSV formats. +* Exporting: You can export the OLAP Grid to Microsoft Excel, Microsoft Word, PDF, and CSV formats. diff --git a/wpf/OLAP-Grid/Paging.md b/wpf/OLAP-Grid/Paging.md index c694b10ae..3e27f8aee 100644 --- a/wpf/OLAP-Grid/Paging.md +++ b/wpf/OLAP-Grid/Paging.md @@ -9,13 +9,13 @@ documentation: ug # Paging in WPF OLAP Grid -Paging in the OLAP grid supports loading and rendering large amounts of data without any performance constraints. +Paging in the OLAP Grid supports loading and rendering large amounts of data without any performance constraints. -The OLAP pager (user control) is included and bound with the OlapDataManager object of the respective OLAP grid. To enable paging, set the `EnablePaging` property to true. +The OLAP pager (user control) is included and bound with the OlapDataManager object of the respective OLAP Grid. To enable paging, set the `EnablePaging` property to true. When you process a large cell set, it is split into several segments and each segment is assigned and rendered in a separate page. You can navigate back and forth in all possible ways by using the UI options in the OLAP pager. You can also change the page size and other pager settings at runtime by using the **PageSetting** window. -Include the following Syncfusion® assembly from the installed location to add the OLAP pager with OLAP grid: +Include the following Syncfusion® assembly from the installed location to add the OLAP pager with the OLAP Grid: * Syncfusion.OlapShared.Wpf @@ -150,7 +150,7 @@ End Namespace {% endtabs %} -![OlapPager in OlapGrid control](Paging_images/Paging_img1.png) +![Pager added to the grid](Paging_images/Paging_img1.png) ![Page Setting Window](Paging_images/Paging_img2.png) diff --git a/wpf/OLAP-Grid/Support-for-All-Level-Type-Member.md b/wpf/OLAP-Grid/Support-for-All-Level-Type-Member.md index 848ca3820..b9488fcd1 100644 --- a/wpf/OLAP-Grid/Support-for-All-Level-Type-Member.md +++ b/wpf/OLAP-Grid/Support-for-All-Level-Type-Member.md @@ -7,9 +7,9 @@ control: OLAP Grid documentation: ug --- -# All-Level Type Member in WPF OLAP Grid control +# All-Level Type Member in WPF OLAP Grid control -This feature enables you to display the “All” level type member across the rows and columns in the OLAP grid. 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 OLAP 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_. By default this is set to _false_. Refer to the following code sample. diff --git a/wpf/OLAP-Grid/Theming.md b/wpf/OLAP-Grid/Theming.md index 156a1196b..c1cf9abce 100644 --- a/wpf/OLAP-Grid/Theming.md +++ b/wpf/OLAP-Grid/Theming.md @@ -22,7 +22,7 @@ Theming is the process of applying particular settings to the visual elements of * Office2013White * VS -The `VisualStyle` property allows you to set a theme for the OLAP grid control. The following code sample demonstrates how to add theming to the OLAP grid control. +The `VisualStyle` property allows you to set a theme for the control. The following code sample demonstrates how to add theming to the OLAP Grid. {% tabs %} diff --git a/wpf/OLAP-Grid/ToolTip.md b/wpf/OLAP-Grid/ToolTip.md index 0ee8615de..5eb7312e1 100644 --- a/wpf/OLAP-Grid/ToolTip.md +++ b/wpf/OLAP-Grid/ToolTip.md @@ -9,11 +9,11 @@ documentation: ug # Tooltip in WPF OLAP Grid -The OLAP grid can additionally display the member information within a tooltip when the mouse pointer is moved over the header cells or value cells of the OLAP grid control. +The OLAP Grid can additionally display the member information within a tooltip when the mouse pointer is moved over the header cells or value cells of the control. ## Header tooltip -The OLAP grid provides drill-down information through the header cell tooltip for hierarchical dimensions by enabling efficient preview of data before drilling down. It can be enabled using the following property of the OLAP grid. +The control provides drill-down information through the header cell tooltip for hierarchical dimensions by enabling efficient preview of data before drilling down. It can be enabled using the following property of the OLAP Grid. {% tabs %} @@ -33,11 +33,11 @@ Me.OlapGrid1.ShowHeaderCellsToolTip = True {% endtabs %} -![To display the header cells tooltip in OlapGrid](ToolTip_images/ToolTip_img1.png) +![Header cells tooltip](ToolTip_images/ToolTip_img1.png) ## Value cell tooltip -The OLAP grid provides cell information (measure, column header, row header, and value cell) when the mouse pointer is hovered over the value cells. This can be enabled using the following property of the OLAP grid. +The control provides cell information (measure, column header, row header, and value cell) when the mouse pointer is hovered over the value cells. This can be enabled using the following property of the OLAP Grid. {% tabs %} diff --git a/wpf/OLAP-Grid/XAML-Configuration.md b/wpf/OLAP-Grid/XAML-Configuration.md index e404de43d..e4a581678 100644 --- a/wpf/OLAP-Grid/XAML-Configuration.md +++ b/wpf/OLAP-Grid/XAML-Configuration.md @@ -9,7 +9,7 @@ documentation: ug # XAML Configuration in WPF OLAP Grid -XAML configuration is one of the most important features of the OLAP grid, as it helps users to configure the control entirely through XAML by eliminating the required code in code behind. +XAML configuration is one of the most important features of the OLAP Grid, as it helps users to configure the control entirely through XAML by eliminating the required code in code behind. ## Properties @@ -24,7 +24,7 @@ XAML configuration is one of the most important features of the OLAP grid, as it * **SlicerAxis**: Specifies the slicer axis of the OLAP report. * **CalculatedMembers**: Specifies the calculated members of the OLAP report. -Adding an OLAP report to the OLAP grid in design time is described in the following code sample. +Adding an OLAP report to the OLAP Grid in design time is described in the following code sample. {% highlight xaml %} From 602f0e410d354d86fd87c7c14107177e1522d8b3 Mon Sep 17 00:00:00 2001 From: Dinesh Rangasamy Date: Wed, 9 Sep 2026 15:52:43 +0530 Subject: [PATCH 2/2] WPF-Redundant-OLAP-Grid : Updated HOW To files in WPF OLAP Grid --- .../How-To/Display-Measures-and-KPIs-in-Desired-Order.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wpf/OLAP-Grid/How-To/Display-Measures-and-KPIs-in-Desired-Order.md b/wpf/OLAP-Grid/How-To/Display-Measures-and-KPIs-in-Desired-Order.md index 3100a6672..3624bc534 100644 --- a/wpf/OLAP-Grid/How-To/Display-Measures-and-KPIs-in-Desired-Order.md +++ b/wpf/OLAP-Grid/How-To/Display-Measures-and-KPIs-in-Desired-Order.md @@ -9,7 +9,7 @@ documentation: ug # How to display measures and KPIs in desired order in WPF OLAP Grid -By default, the measure items and KPI items are separately grouped and displayed one after another in the OLAP grid control. To display them in the desired order, the `DisplayMeasuresInDesiredOrder` property of the OLAP report should be set to `true` and the elements of measures and KPIs should be defined by using the `ValueElements` object. +By default, the measure items and KPI items are separately grouped and displayed one after another in the OLAP Grid control. To display them in the desired order, the `DisplayMeasuresInDesiredOrder` property of the OLAP report should be set to `true` and the elements of measures and KPIs should be defined by using the `ValueElements` object. Refer to the following code sample to display the measures and KPIs in the desired order.