Skip to content

Commit 8474046

Browse files
980754: Revise UG Documentation Content for Blazor Platform(Section-4)
1 parent 6226ed3 commit 8474046

File tree

12 files changed

+19
-19
lines changed

12 files changed

+19
-19
lines changed

blazor/pivot-table/connecting-to-data-source/elasticsearch.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This section explains how to connect the Pivot Table component to an Elasticsear
2222
1. Open the **NuGet Package Manager** in your project solution.
2323
2. Search for the **NEST** package and install it to enable connectivity with the Elasticsearch server.
2424

25-
![Add the NuGet package "Nest" to the project](../images/Elasticsearch-nuget-package-install.png)
25+
![Add the NuGet package Nest to the project](../images/next-nuget-package-install.png)
2626

2727
### Step 3: Configure Elasticsearch Connection
2828
1. In the **Index.razor** page, within the `OnInitialized` method, use the **ElasticClient** class from the NEST library to establish a connection to the Elasticsearch database.
@@ -122,7 +122,7 @@ Follow these steps to create a Web API service that retrieves data from an Elast
122122
#### Step 2: Install the NEST NuGet Package
123123
1. Install the **NEST** package using the **NuGet Package Manager** to enable Elasticsearch connectivity.
124124

125-
![Add the NuGet package "Nest" to the project](../images/Elasticsearch-nuget-package-install-in-web-service-app.png)
125+
![Add the NuGet package Nest to the project](../images/next-nuget-package-install.png)
126126

127127
#### Step 3: Create a Web API Controller
128128
1. In the **Controllers** folder, create a new Web API controller named **PivotController.cs**.

blazor/pivot-table/connecting-to-data-source/microsoft-sql-server.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This section describes how to connect the [Blazor Pivot Table](https://www.syncf
2222
1. Open the **NuGet Package Manager** in your project solution.
2323
2. Search for and install the [System.Data.SqlClient](https://www.nuget.org/packages/System.Data.SqlClient/4.8.5?_src=template) package to enable Microsoft SQL Server connectivity.
2424

25-
![Add the NuGet package "System.Data.SqlClient" to the project](../images/system-Data-sql-client-nuget-package-install.png)
25+
![Add the NuGet package System.Data.SqlClient to the project](../images/system-Data-sql-client-nuget-package-install.png)
2626

2727
### Step 3: Connect to the Microsoft SQL database
2828
In the **Index.razor** file, under the `OnInitialized` method, use the [System.Data.SqlClient](https://www.nuget.org/packages/System.Data.SqlClient/4.8.5?_src=template) library to connect to a Microsoft SQL database and retrieve data for the Pivot Table.
@@ -117,7 +117,7 @@ Follow these steps to set up a Web API service that retrieves Microsoft SQL data
117117
1. Open the **NuGet Package Manager** in your project solution.
118118
2. Search for and install the [System.Data.SqlClient](https://www.nuget.org/packages/System.Data.SqlClient/4.8.5?_src=template) package to enable Microsoft SQL Server connectivity.
119119

120-
![Add the NuGet package "System.Data.SqlClient" to the project](../images/system-Data-sql-client-nuget-package-install.png)
120+
![Add the NuGet package System.Data.SqlClient to the project](../images/system-Data-sql-client-nuget-package-install.png)
121121

122122
#### Step 3: Create a Web API controller
123123
1. In the **Controllers** folder, create a new Web API controller named **PivotController.cs**.
@@ -208,7 +208,7 @@ namespace MyWebService.Controllers
208208
1. Access the Web API endpoint at `https://localhost:7139/Pivot` to view the JSON data retrieved from the Microsoft SQL database.
209209
2. The browser will display the JSON data, as shown below.
210210

211-
![Hosted Web API URL](../images/Ms-Sql-data.png)
211+
![Hosted Web API URL](../images/code-web-app.jpeg)
212212

213213
### Connecting the Pivot Table to a Microsoft SQL database using the Web API service
214214

@@ -219,7 +219,7 @@ This section explains how to connect the [Blazor Pivot Table](https://www.syncfu
219219

220220
#### Step 2: Configure the Web API URL
221221
1. In the **Index.razor** file, map the Web API URL (`https://localhost:7139/Pivot`) to the Pivot Table using the [Url](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_Url) property of [PivotViewDataSourceSettings](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.DataSourceSettingsModel-1.html).
222-
2. The [Url](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_Url) property deserializes Microsoft SQL data into instances of your model data class (e.g., `TValue="OrderDetails"`) for binding to the Pivot Table.
222+
2. The [Url](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_Url) property deserialize Microsoft SQL data into instances of your model data class (e.g., `TValue="OrderDetails"`) for binding to the Pivot Table.
223223

224224
#### Step 3: Define the Pivot Table report
225225
1. Configure the Pivot Table by defining fields in the [PivotViewColumns](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_Columns), [PivotViewRows](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_Rows), [PivotViewValues](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_Values), and [PivotViewFormatSettings](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_FormatSettings) properties.

blazor/pivot-table/connecting-to-data-source/mongodb.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This section describes how to connect the Blazor Pivot Table to a MongoDB databa
2222
1. Open the **NuGet Package Manager** in your project solution.
2323
2. Search for the [MongoDB.Driver](https://www.nuget.org/packages/MongoDB.Driver) package and install it to enable MongoDB connectivity.
2424

25-
![Add the NuGet package "MongoDB.Driver" to the project](../images/mongodb-nuget-package-install.png)
25+
![Add the NuGet package MongoDB.Driver to the project](../images/mongodb-nuget-package-install.png)
2626

2727
### Step 3: Connect to MongoDB
2828
1. In the **Index.razor** file, under the `OnInitialized` method, use the **MongoClient** class to connect to the MongoDB database with a valid connection string.
@@ -113,7 +113,7 @@ Follow these steps to set up a Web API service that retrieves MongoDB data for t
113113
1. Open the **NuGet Package Manager** in the project solution.
114114
2. Search for and install the [MongoDB.Driver](https://www.nuget.org/packages/MongoDB.Driver) package to enable MongoDB connectivity.
115115

116-
![Add the NuGet package "MongoDB.Driver" to the project](../images/mongodb-nuget-package-install-in-web-service-app.png)
116+
![Add the NuGet package MongoDB.Driver to the project](../images/mongodb-nuget-package-install-in-web-service-app.png)
117117

118118
#### Step 3: Create a Web API Controller
119119
1. In the **Controllers** folder, create a new Web API controller named **PivotController.cs**.

blazor/pivot-table/connecting-to-data-source/mysql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This section describes how to connect the [Blazor Pivot Table](https://www.syncf
2222
1. Open the **NuGet Package Manager** in your project solution and search for **MySql.Data**.
2323
2. Install the **MySql.Data** package to add MySQL database support.
2424

25-
![Add the NuGet package "MySql.Data" to the project](../images/MySQL-nuget-package-install-in-web-service-app.png)
25+
![Add the NuGet package MySql.Data to the project](../images/MySQL-nuget-package-install-in-web-service-app.png)
2626

2727
### Step 3: Connect to MySQL
2828
In the **Index.razor** file, under the `OnInitialized` method, use the [MySql.Data](https://www.nuget.org/packages/MySql.Data) library to connect to a MySQL database and retrieve data for the Pivot Table.
@@ -121,7 +121,7 @@ Follow these steps to set up a Web API service that retrieves MySQL data for the
121121
#### Step 2: Install the MySql.Data NuGet Package
122122
1. Install the [MySql.Data](https://www.nuget.org/packages/MySql.Data) package using the **NuGet Package Manager** to enable MySQL connectivity.
123123

124-
![Add the NuGet package "MySql.Data" to the project](../images/MySQL-nuget-package-install-in-web-service-app.png)
124+
![Add the NuGet package MySql.Data to the project](../images/MySQL-nuget-package-install-in-web-service-app.png)
125125

126126
#### Step 3: Create a Web API Controller
127127
1. In the **Controllers** folder, create a new Web API controller named **PivotController.cs**.

blazor/pivot-table/connecting-to-data-source/oracledb.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This section describes how to connect the [Blazor Pivot Table](https://www.syncf
2222
1. Open the **NuGet Package Manager** in your project solution and search for [Oracle.ManagedDataAccess.Core](https://www.nuget.org/packages/Oracle.ManagedDataAccess.Core/).
2323
2. Install the [Oracle.ManagedDataAccess.Core](https://www.nuget.org/packages/Oracle.ManagedDataAccess.Core/) package to add Oracle support.
2424

25-
![Add the NuGet package "Oracle.ManagedDataAccess.Core" to the project](../images/oracledb-nuget-package-install.png)
25+
![Add the NuGet package Oracle.ManagedDataAccess.Core to the project](../images/oracledb-nuget-package-install.png)
2626

2727
### Step 3: Connect to the Oracle database
2828
In the **Index.razor** file, under the `OnInitialized` method, use the [Oracle.ManagedDataAccess](https://www.nuget.org/packages/Oracle.ManagedDataAccess) library to connect to an Oracle database and retrieve data for the Pivot Table.
@@ -130,7 +130,7 @@ Follow these steps to set up a Web API service that retrieves Oracle data for th
130130
#### Step 2: Install the Oracle NuGet package
131131
1. Install the [Oracle.ManagedDataAccess.Core](https://www.nuget.org/packages/Oracle.ManagedDataAccess.Core/) package using the **NuGet Package Manager** to enable Oracle connectivity.
132132

133-
![Add the NuGet package "Oracle.ManagedDataAccess.Core" to the project](../images/oracledb-nuget-package-install-in-web-service-app.png)
133+
![Add the NuGet package Oracle.ManagedDataAccess.Core to the project](../images/oracledb-nuget-package-install-in-web-service-app.png)
134134

135135
#### Step 3: Create a Web API controller
136136
1. In the **Controllers** folder, create a new Web API controller named **PivotController.cs**.
@@ -221,7 +221,7 @@ namespace MyWebService.Controllers
221221
1. Access the Web API endpoint at `https://localhost:44346/Pivot` to view the JSON data retrieved from Oracle.
222222
2. The browser will display the JSON data, as shown below.
223223

224-
![Hosted Web API URL](../images/oracledb-data.png)
224+
![Hosted Web API URL](../images/oracle-code-web-app.png)
225225

226226
### Connecting the Pivot Table to a Oracle database using the Web API service
227227

@@ -232,7 +232,7 @@ This section explains how to connect the Blazor Pivot Table to Oracle data retri
232232

233233
#### Step 2: Configure the Web API URL
234234
1. In the **Index.razor** file, map the Web API URL (`https://localhost:44346/Pivot`) to the Pivot Table using the [Url](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_Url) property of [PivotViewDataSourceSettings](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.DataSourceSettingsModel-1.html).
235-
2. The [Url](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_Url) property deserializes Oracle data into instances of your model data class (e.g., TValue="EmployeeDetails") for binding to the Pivot Table.
235+
2. The [Url](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_Url) property deserialize Oracle data into instances of your model data class (e.g., TValue="EmployeeDetails") for binding to the Pivot Table.
236236

237237
#### Step 3: Define the Pivot Table report
238238
1. Configure the Pivot Table by defining fields in the [PivotViewColumns](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_Columns), [PivotViewRows](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_Rows), [PivotViewValues](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_Values), and [PivotViewFormatSettings](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_FormatSettings) properties.

blazor/pivot-table/connecting-to-data-source/postgreSQL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ namespace MyWebService.Controllers
212212
1. Access the Web API endpoint at `https://localhost:44378/Pivot` to view the JSON data retrieved from PostgreSQL.
213213
2. The browser will display the JSON data, as shown below.
214214

215-
![Hosted Web API URL](../images/postgreSQL-data.png)
215+
![Hosted Web API URL](../images/postgresql_data.png)
216216

217217
### Connecting the Pivot Table to a PostgreSQL Database Using the Web API Service
218218

@@ -223,7 +223,7 @@ This section explains how to connect the Blazor Pivot Table to PostgreSQL data r
223223

224224
#### Step 2: Configure the Web API URL
225225
1. In the **Index.razor** file, map the Web API URL (`https://localhost:44378/Pivot`) to the Pivot Table using the [Url](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_Url) property of [PivotViewDataSourceSettings](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.DataSourceSettingsModel-1.html).
226-
2. The [Url](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_Url) property deserializes PostgreSQL data into instances of your model data class (e.g., `TValue="PostgreSQLService"`) for binding to the Pivot Table.
226+
2. The [Url](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_Url) property deserialize PostgreSQL data into instances of your model data class (e.g., `TValue="PostgreSQLService"`) for binding to the Pivot Table.
227227

228228
#### Step 3: Define the Pivot Table Report
229229
1. Configure the Pivot Table by defining fields in the [PivotViewColumns](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_Columns), [PivotViewRows](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_Rows), [PivotViewValues](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_Values), and [PivotViewFormatSettings](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_FormatSettings) properties.

blazor/pivot-table/connecting-to-data-source/snowflakedb.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This section describes how to connect the [Blazor Pivot Table](https://www.syncf
2222
1. Open the **NuGet Package Manager** in your project solution and search for [Snowflake.Data](https://www.nuget.org/packages/Snowflake.Data/).
2323
2. Install the [Snowflake.Data](https://www.nuget.org/packages/Snowflake.Data/) package to add Snowflake support.
2424

25-
![Add the NuGet package "Snowflake.Data" to the project](../images/Snowflake-nuget-package-install.png)
25+
![Add the NuGet package Snowflake.Data to the project](../images/Snowflake-nuget-package-install.png)
2626

2727
### Step 3: Connect to the Snowflake Database
2828
In the **Index.razor** file, under the `OnInitialized` method, use the [Snowflake.Data](https://www.nuget.org/packages/Snowflake.Data) library to connect to the Snowflake database and retrieve data for the Pivot Table.
@@ -124,7 +124,7 @@ Follow these steps to set up a Web API service that retrieves Snowflake data for
124124
1. Open the NuGet Package Manager in your project solution.
125125
2. Search for and install the [Snowflake.Data](https://www.nuget.org/packages/Snowflake.Data) package to enable Snowflake connectivity.
126126

127-
![Add the NuGet package "Snowflake.Data" to the project](../images/Snowflake-nuget-package-install-in-web-service-app.png)
127+
![Add the NuGet package Snowflake.Data to the project](../images/Snowflake-nuget-package-install-in-web-service-app.png)
128128

129129
#### Step 3: Create a Web API Controller
130130
1. In the **Controllers** folder, create a new Web API controller named **PivotController.cs**.
@@ -228,7 +228,7 @@ This section explains how to connect the [Blazor Pivot Table](https://www.syncfu
228228

229229
#### Step 2: Configure the Web API URL
230230
1. In the **Index.razor** file, map the Web API URL (`https://localhost:44378/Pivot`) to the Pivot Table using the [Url](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_Url) property of [PivotViewDataSourceSettings](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.DataSourceSettingsModel-1.html).
231-
2. The [Url](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_Url) property deserializes Snowflake data into instances of your model data class (e.g., `TValue="SnowflakeService"`) for binding to the Pivot Table.
231+
2. The [Url](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_Url) property deserialize Snowflake data into instances of your model data class (e.g., `TValue="SnowflakeService"`) for binding to the Pivot Table.
232232

233233
#### Step 3: Define the Pivot Table Report
234234
1. Configure the Pivot Table by defining fields in the [PivotViewColumns](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_Columns), [PivotViewRows](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_Rows), [PivotViewValues](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_Values), and [PivotViewFormatSettings](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.PivotView.PivotViewDataSourceSettings-1.html#Syncfusion_Blazor_PivotView_PivotViewDataSourceSettings_1_FormatSettings) properties.
97.3 KB
Loading
-238 KB
Loading
28.5 KB
Loading

0 commit comments

Comments
 (0)