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
Latest version of the [.NET SDK](https://dotnet.microsoft.com/en-us/download). If you previously installed the SDK, you can determine the installed version by executing the following command in a command prompt (Windows) or terminal (macOS) or command shell (Linux).
105
105
@@ -111,7 +111,7 @@ dotnet --version
111
111
{% endhighlight %}
112
112
{% endtabs %}
113
113
114
-
###Create a Blazor Web App using .NET CLI
114
+
## Create a Blazor Web App using .NET CLI
115
115
116
116
Run the following command to create a new Blazor Web App in a command prompt (Windows) or terminal (macOS) or command shell (Linux).
117
117
@@ -131,17 +131,16 @@ cd BlazorWebApp.Client
131
131
132
132
This command creates a new Blazor Web App and places it in a new directory called `BlazorWebApp` inside your current location. See the [Create a Blazor App](https://dotnet.microsoft.com/en-us/learn/aspnet/blazor-tutorial/create) and [dotnet new CLI command](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?pivots=cli&view=aspnetcore-10.0) topics for more details.
133
133
134
-
###Install Syncfusion<supstyle="font-size:70%">®</sup> Blazor Chart3D and Themes NuGet in the App
134
+
## Install Syncfusion<supstyle="font-size:70%">®</sup> Blazor Chart3D NuGet in the App
135
135
136
-
Here's an example of how to add the **Blazor 3D Chart** component to the application by using the following commands in a command prompt (Windows), terminal (Linux and macOS), or PowerShell to install the [Syncfusion.Blazor.Chart3D](https://www.nuget.org/packages/Syncfusion.Blazor.Chart3D/)and [Syncfusion.Blazor.Themes](https://www.nuget.org/packages/Syncfusion.Blazor.Themes/)NuGet packages. See [Install and manage packages using the dotnet CLI](https://learn.microsoft.com/en-us/nuget/consume-packages/install-use-packages-dotnet-cli) for more details.
136
+
Here's an example of how to add the **Blazor 3D Chart** component to the application by using the following commands in a command prompt (Windows), terminal (Linux and macOS), or PowerShell to install the [Syncfusion.Blazor.Chart3D](https://www.nuget.org/packages/Syncfusion.Blazor.Chart3D/) NuGet package. See [Install and manage packages using the dotnet CLI](https://learn.microsoft.com/en-us/nuget/consume-packages/install-use-packages-dotnet-cli) for more details.
137
137
138
138
If using the `WebAssembly` or `Auto` render modes in the Blazor Web App, install Syncfusion<supstyle="font-size:70%">®</sup> Blazor component NuGet packages in the client project.
Open the **~/_Imports.razor** file in the client project and import the `Syncfusion.Blazor` and `Syncfusion.Blazor.Chart3D` namespaces.
159
158
@@ -170,7 +169,7 @@ Open the **~/_Imports.razor** file in the client project and import the `Syncfus
170
169
171
170
Register the Syncfusion<supstyle="font-size:70%">®</sup> Blazor Service in the **~/Program.cs** file of your Blazor Web App.
172
171
173
-
If the **Interactive Render Mode** is set to `WebAssembly` or `Auto`, register the Syncfusion<supstyle="font-size:70%">®</sup> Blazor service in both**~/Program.cs** files of the Blazor Web App.
172
+
If the **Interactive Render Mode** is set to `WebAssembly` or `Auto`, register the Syncfusion<supstyle="font-size:70%">®</sup> Blazor service in the**~/Program.cs** files of the main `server` project and associated `.Client` project.
@@ -219,7 +218,7 @@ N> Check out the [Adding Script Reference](https://blazor.syncfusion.com/documen
219
218
220
219
## Add Syncfusion<supstyle="font-size:70%">®</sup> Blazor 3D Chart component
221
220
222
-
Add the Syncfusion<supstyle="font-size:70%">®</sup> Blazor 3D Chart component in the **~/Components/Pages/*.razor** file. If the interactivity location is set to `Per page/component` in the Web App, define a render mode at the top of the`~Pages/*.razor` component, as follows:
221
+
Add the Syncfusion<supstyle="font-size:70%">®</sup> Blazor 3D Chart 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:
Latest version of the [.NET SDK](https://dotnet.microsoft.com/en-us/download). If you previously installed the SDK, you can determine the installed version by executing the following command in a command prompt (Windows) or terminal (macOS) or command shell (Linux).
102
102
@@ -108,7 +108,7 @@ dotnet --version
108
108
{% endhighlight %}
109
109
{% endtabs %}
110
110
111
-
###Create a Blazor Web App using .NET CLI
111
+
## Create a Blazor Web App using .NET CLI
112
112
113
113
Run the following command to create a new Blazor Web App in a command prompt (Windows) or terminal (macOS) or command shell (Linux).
114
114
@@ -128,7 +128,7 @@ cd BlazorWebApp.Client
128
128
129
129
This command creates a new Blazor Web App and places it in a new directory called `BlazorWebApp` inside your current location. See the [Create a Blazor App](https://dotnet.microsoft.com/en-us/learn/aspnet/blazor-tutorial/create) and [dotnet new CLI command](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?pivots=cli&view=aspnetcore-10.0) topics for more details.
130
130
131
-
###Install Syncfusion<supstyle="font-size:70%">®</sup> Blazor Navigations and Themes NuGet in the App
131
+
## Install Syncfusion<supstyle="font-size:70%">®</sup> Blazor Navigations and Themes NuGet in the App
132
132
133
133
Here's an example of how to add the **Blazor Accordion** component to the application by using the following commands in a command prompt (Windows), terminal (Linux and macOS), or PowerShell to install the [Syncfusion.Blazor.Navigations](https://www.nuget.org/packages/Syncfusion.Blazor.Navigations/) and [Syncfusion.Blazor.Themes](https://www.nuget.org/packages/Syncfusion.Blazor.Themes/) NuGet packages. See [Install and manage packages using the dotnet CLI](https://learn.microsoft.com/en-us/nuget/consume-packages/install-use-packages-dotnet-cli) for more details.
Open the **~/_Imports.razor** file in the client project and import the `Syncfusion.Blazor` and `Syncfusion.Blazor.Navigations` namespaces.
156
156
@@ -167,7 +167,7 @@ Open the **~/_Imports.razor** file in the client project and import the `Syncfus
167
167
168
168
Register the Syncfusion<supstyle="font-size:70%">®</sup> Blazor Service in the **~/Program.cs** file of your Blazor Web App.
169
169
170
-
If the **Interactive Render Mode** is set to `WebAssembly` or `Auto`, register the Syncfusion<supstyle="font-size:70%">®</sup> Blazor service in both**~/Program.cs** files of the Blazor Web App.
170
+
If the **Interactive Render Mode** is set to `WebAssembly` or `Auto`, register the Syncfusion<supstyle="font-size:70%">®</sup> Blazor service in the**~/Program.cs** files of the main `server` project and associated `.Client` project.
Add the Syncfusion<supstyle="font-size:70%">®</sup> Blazor Accordion component in the **~/Components/Pages/*.razor** file. If the interactivity location is set to `Per page/component` in the Web App, define a render mode at the top of the`~Pages/*.razor` component, as follows:
224
+
Add the Syncfusion<supstyle="font-size:70%">®</sup> Blazor Accordion 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:
Latest version of the [.NET SDK](https://dotnet.microsoft.com/en-us/download). If you previously installed the SDK, you can determine the installed version by executing the following command in a command prompt (Windows) or terminal (macOS) or command shell (Linux).
102
102
@@ -108,7 +108,7 @@ dotnet --version
108
108
{% endhighlight %}
109
109
{% endtabs %}
110
110
111
-
###Create a Blazor Web App using .NET CLI
111
+
## Create a Blazor Web App using .NET CLI
112
112
113
113
Run the following command to create a new Blazor Web App in a command prompt (Windows) or terminal (macOS) or command shell (Linux).
114
114
@@ -128,7 +128,7 @@ cd BlazorWebApp.Client
128
128
129
129
This command creates a new Blazor Web App and places it in a new directory called `BlazorWebApp` inside your current location. See the [Create a Blazor App](https://dotnet.microsoft.com/en-us/learn/aspnet/blazor-tutorial/create) and [dotnet new CLI command](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?pivots=cli&view=aspnetcore-10.0) topics for more details.
130
130
131
-
###Install Syncfusion<supstyle="font-size:70%">®</sup> Blazor Charts and Themes NuGet in the App
131
+
## Install Syncfusion<supstyle="font-size:70%">®</sup> Blazor Charts and Themes NuGet in the App
132
132
133
133
Here's an example of how to add the **Blazor Accumulation Chart** component to the application by using the following commands in a command prompt (Windows), terminal (Linux and macOS), or PowerShell to install the [Syncfusion.Blazor.Charts](https://www.nuget.org/packages/Syncfusion.Blazor.Charts/) and [Syncfusion.Blazor.Themes](https://www.nuget.org/packages/Syncfusion.Blazor.Themes/) NuGet packages. See [Install and manage packages using the dotnet CLI](https://learn.microsoft.com/en-us/nuget/consume-packages/install-use-packages-dotnet-cli) for more details.
Open the **~/_Imports.razor** file in the client project and import the `Syncfusion.Blazor` and `Syncfusion.Blazor.Charts` namespaces.
156
156
@@ -167,7 +167,7 @@ Open the **~/_Imports.razor** file in the client project and import the `Syncfus
167
167
168
168
Register the Syncfusion<supstyle="font-size:70%">®</sup> Blazor Service in the **~/Program.cs** file of your Blazor Web App.
169
169
170
-
If the **Interactive Render Mode** is set to `WebAssembly` or `Auto`, register the Syncfusion<supstyle="font-size:70%">®</sup> Blazor service in both**~/Program.cs** files of the Blazor Web App.
170
+
If the **Interactive Render Mode** is set to `WebAssembly` or `Auto`, register the Syncfusion<supstyle="font-size:70%">®</sup> Blazor service in the**~/Program.cs** files of the main `server` project and associated `.Client` project.
Add the Syncfusion<supstyle="font-size:70%">®</sup> Blazor Accumulation Chart component in the **~/Components/Pages/*.razor** file. If the interactivity location is set to `Per page/component` in the Web App, define a render mode at the top of the`~Pages/*.razor` component, as follows:
224
+
Add the Syncfusion<supstyle="font-size:70%">®</sup> Blazor Accumulation Chart 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:
Latest version of the [.NET SDK](https://dotnet.microsoft.com/en-us/download). If you previously installed the SDK, you can determine the installed version by executing the following command in a command prompt (Windows) or terminal (macOS) or command shell (Linux).
102
102
@@ -108,7 +108,7 @@ dotnet --version
108
108
{% endhighlight %}
109
109
{% endtabs %}
110
110
111
-
###Create a Blazor Web App using .NET CLI
111
+
## Create a Blazor Web App using .NET CLI
112
112
113
113
Run the following command to create a new Blazor Web App in a command prompt (Windows) or terminal (macOS) or command shell (Linux).
114
114
@@ -128,7 +128,7 @@ cd BlazorWebApp.Client
128
128
129
129
This command creates a new Blazor Web App and places it in a new directory called `BlazorWebApp` inside your current location. See the [Create a Blazor App](https://dotnet.microsoft.com/en-us/learn/aspnet/blazor-tutorial/create) and [dotnet new CLI command](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?pivots=cli&view=aspnetcore-10.0) topics for more details.
130
130
131
-
###Install Syncfusion<supstyle="font-size:70%">®</sup> Blazor Navigations and Themes NuGet in the App
131
+
## Install Syncfusion<supstyle="font-size:70%">®</sup> Blazor Navigations and Themes NuGet in the App
132
132
133
133
Here's an example of how to add the **Blazor AppBar** component to the application by using the following commands in a command prompt (Windows), terminal (Linux and macOS), or PowerShell to install the [Syncfusion.Blazor.Navigations](https://www.nuget.org/packages/Syncfusion.Blazor.Navigations/) and [Syncfusion.Blazor.Themes](https://www.nuget.org/packages/Syncfusion.Blazor.Themes/) NuGet packages. See [Install and manage packages using the dotnet CLI](https://learn.microsoft.com/en-us/nuget/consume-packages/install-use-packages-dotnet-cli) for more details.
Open the **~/_Imports.razor** file in the client project and import the `Syncfusion.Blazor` and `Syncfusion.Blazor.Navigations` namespaces.
156
156
@@ -167,7 +167,7 @@ Open the **~/_Imports.razor** file in the client project and import the `Syncfus
167
167
168
168
Register the Syncfusion<supstyle="font-size:70%">®</sup> Blazor Service in the **~/Program.cs** file of your Blazor Web App.
169
169
170
-
If the **Interactive Render Mode** is set to `WebAssembly` or `Auto`, register the Syncfusion<supstyle="font-size:70%">®</sup> Blazor service in both**~/Program.cs** files of the Blazor Web App.
170
+
If the **Interactive Render Mode** is set to `WebAssembly` or `Auto`, register the Syncfusion<supstyle="font-size:70%">®</sup> Blazor service in the**~/Program.cs** files of the main `server` project and associated `.Client` project.
Add the Syncfusion<supstyle="font-size:70%">®</sup> Blazor AppBar component in the **~/Components/Pages/*.razor** file. If the interactivity location is set to `Per page/component` in the Web App, define a render mode at the top of the`~Pages/*.razor` component, as follows:
224
+
Add the Syncfusion<supstyle="font-size:70%">®</sup> Blazor AppBar 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:
0 commit comments