- Prerequisites
- Preparing ASP.NET MVC application
- Add Gauge Title
- Axis
Contact Support
Getting Started
17 Feb 20222 minutes to read
Prerequisites
To get start with ASP.NET MVC application, need to ensure the following software to be installed on the machine.
- .Net Framework 4.5 and above.
- ASP.NET MVC 4 or ASP.NET MVC 5
- Visual Studio
Preparing ASP.NET MVC application
The following steps to create ASP.NET MVC Application.
Step 1: Create ASP.NET MVC Application with default template project in Visual Studio.
Step 2: Once your project created. We need to add Syncfusion EJ2 package into your application by using NuGet Package Manager
.
Open the NuGet
package manager.
Install the Syncfusion.EJ2.MVC4 package to the application.
After installation complete, this will be included in the project. You can refer it from the Project Assembly Reference.
We need to install NewtonSoft.JSON as a dependency, since Syncfusion.EJ2 dependent to
NewtonSoft.JSON
package.
Step 3: Add Syncfusion.EJ2 namespace reference in Web.Config
.
<namespaces>
<add namespace="Syncfusion.EJ2"/>
</namespaces>
<system.web>
<compilation>
<assemblies>
<add assembly="Syncfusion.EJ2" Version=15.3400.0.27, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</assemblies>
</compilation>
</system.web>
Step 4: Add client side resources through CDN
or local package
in the layout page _Layout.cshtml.
@* Syncfusion Essential JS 2 Scripts *@
<script src="https://cdn.syncfusion.com/ej2/dist/ej2.min.js"></script>
Step 5: Add Script Manager and namespace in layout page _Layout.cshtml.
@using Syncfusion.EJ2;
. . .
. . .
<body>
. . .
. . .
@Html.EJS().ScriptManager()
</body>
Step 6: Now, we can add Syncfusion Essential JS 2 for ASP.Net Core components in any page you want.
We are going to render CircularGauge
component in Index.cshtml page.
<h2> Essential JS 2 for ASP.NET MVC CircularGauge </h2>
@Html.EJS().CircularGauge("container").Render();
Add Gauge Title
You can add a title using title
attribute to the circulargauge to provide quick information to the user.
<h2> Essential JS 2 for ASP.NET MVC CircularGauge </h2>
@Html.EJS().CircularGauge("container").Title("Speed").Render();
Axis
You can set the range to the axis using minimum
and maximum
attributes for axis tag.
Refer below code snippet to add the axis range to circulargauge.
@Html.EJS().CircularGauge("container").Axes(axes =>
axes.EndAngle(120).StartAngle(240).Radius("90%").Minimum(0).Maximum(120).Add()
).Render();