You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Open the **~/_Imports.razor** file from the client project and import the `Syncfusion.Blazor` and `Syncfusion.Blazor.PivotView` namespaces.
159
+
Open the **~/Components/_Imports.razor** file from the client project and import the `Syncfusion.Blazor` and `Syncfusion.Blazor.PivotView` namespaces.
160
160
161
161
{% tabs %}
162
162
{% highlight C# tabtitle="~/_Imports.razor" %}
@@ -228,7 +228,7 @@ N> Explore the [Blazor Themes](https://blazor.syncfusion.com/documentation/appea
228
228
229
229
## Initializing Blazor pivot Table component
230
230
231
-
Add the Syncfusion<supstyle="font-size:70%">®</sup> Blazor Floating Action Button component to a Razor page located under the Pages folder (e.g., Pages/Home.razor) in either the **Server** or **Client** project. If an interactivity location as `Per page/component` in the web app, define a render mode at top of the component, as follows:
231
+
Add the Syncfusion<supstyle="font-size:70%">®</sup> Blazor Pivot Table component to a Razor page located under the Pages folder (e.g., **~/Components/Pages/Home.razor**) in either the **Server** or **Client** project. If an interactivity location as `Per page/component` in the web app, define a render mode at top of the component, as follows:
232
232
233
233
| Interactivity Location | Render Mode | Code |
234
234
| --- | --- | --- |
@@ -266,12 +266,14 @@ For demonstration purposes, a collection of objects containing sales details for
To use the Pivot Table component, open the **~/_Imports.razor** file and add the `Syncfusion.Blazor` and `Syncfusion.Blazor.PivotView` namespaces.
78
+
To use the Pivot Table component, open the **~/Components/_Imports.razor** file and add the `Syncfusion.Blazor` and `Syncfusion.Blazor.PivotView` namespaces.
79
79
80
80
{% tabs %}
81
81
{% highlight razor tabtitle="~/_Imports.razor" %}
@@ -126,7 +126,7 @@ namespace MauiBlazorWindow;
126
126
127
127
## Add stylesheet and script resources
128
128
129
-
To make the Pivot Table look and work correctly, add the stylesheet and script files from NuGet using [Static Web Assets](https://blazor.syncfusion.com/documentation/appearance/themes#static-web-assets). Place these in the `<head>` section of the **~/index.html** file.
129
+
To make the Pivot Table look and work correctly, add the stylesheet and script files from NuGet using [Static Web Assets](https://blazor.syncfusion.com/documentation/appearance/themes#static-web-assets). Place these in the `<head>` section of the **~wwwroot/index.html** file.
130
130
131
131
```html
132
132
<head>
@@ -143,7 +143,7 @@ N> You can learn more about adding themes to your Blazor app in the [Blazor Them
143
143
144
144
## Add Blazor Pivot Table component
145
145
146
-
Finally, add the Syncfusion<supstyle="font-size:70%">®</sup> Blazor Pivot Table component to the **~/Pages/Index.razor** file to display it in your app.
146
+
Finally, add the Syncfusion<supstyle="font-size:70%">®</sup> Blazor Pivot Table component to the **~/Pages/Home.razor** file to display it in your app.
147
147
148
148
{% tabs %}
149
149
{% highlight razor %}
@@ -162,6 +162,8 @@ For demonstration purposes, a collection of objects containing sales details for
0 commit comments