Learn To Draw Simple ASP.NET Core Blazor Bar Chart Using Canvas Extensions

Learn To Draw Simple ASP.NET Core Blazor Bar Chart Using Canvas Extensions
 
If you are new to ASP.NET Core Blazor then check out my other article. Here I have planned to write a series of article. In each article I will explain in detail about how to draw our own chart for ASP.NET Core Blazor Web Application using HTML5 Canvas Blazor Extensions.

In this series we will see one by one in detail starting from:
  1. Dynamic Bar Chart using Blazor Canvas Extentoins
  2. Dynamic Line Chart using Blazor Canvas Extentoins
  3. Dynamic Bar & Line Chart using Blazor Canvas Extentoins
  4. Dynamic Bubble Chart using Blazor Canvas Extentoins
Prerequisites

Create ASP.NET Core Blazor Server Application

 
After installing all the prerequisites listed above, click Start >> Programs >> Visual Studio 2019 >> Visual Studio 2019 on your desktop. Click New >> Project. 
 
Learn To Draw Simple ASP.NET Core Blazor Bar Chart Using Canvas Extensions 
 
Select Blazor App and click Next button.
 
Learn To Draw Simple ASP.NET Core Blazor Bar Chart Using Canvas Extensions 
 
Select your project folder and Enter your Project name and then click Create button.
 
Learn To Draw Simple ASP.NET Core Blazor Bar Chart Using Canvas Extensions 
 
Select Blazor Server App
 
Learn To Draw Simple ASP.NET Core Blazor Bar Chart Using Canvas Extensions 
 
After creating ASP.NET Core Blazor Server Application, wait for a few seconds. You will see the below structure in solution explorer.
 
Learn To Draw Simple ASP.NET Core Blazor Bar Chart Using Canvas Extensions 
 
In the Data folder we can add all our Model, DBContext Class, Services and Controller, we will see that in this article.
 
In the Pages folder we can add all our component files.component file all should have the .razor extension with the file name.
 
In the Shared folder we can add all left menu form NavMenu.razor file and change the main content from the MainLayout.razor file.
 
In the _Imports.razor file we can see all set of imports has been added in order to use in all component pages.
 
In the App.razor file we will add our main component to be displayed by default when run in browser.Appsertings.json can be used to add the connection string.
 
Startup.cs file is an important file where we add all our endpoints, like Controller end points, HTTP Client, add services and dbcontext to be used in startup Configuration method.
 

Run to test the application

 
When we run the application, we can see that the left side has navigation and the right side contains the data. We can see that the default sample pages and menus will be displayed in our Blazor web site. We can use the pages or remove them and start with our own page.
 
Learn To Draw Simple ASP.NET Core Blazor Bar Chart Using Canvas Extensions 
 
Step 2 Install the Packages
 
To use the Blazor Canvas Extension in our Blazor Application we need to install the below packages
 
Blazor.Extensions.Canvas
 
Right click the solution and click on the Manage Nuget package. Search for all the packages and install all the needed packages like the below image.
 
Learn To Draw Simple ASP.NET Core Blazor Bar Chart Using Canvas Extensions 
 
After installing the package, we can confirm it from Dependencies Packages.
 
Learn To Draw Simple ASP.NET Core Blazor Bar Chart Using Canvas Extensions 
 
Note
Add the blazor.extensions.canvas.js File.
 
Open the _Host.cshtml file and add the below code inside the head tag.
  1. <script src="_content/Blazor.Extensions.Canvas/blazor.extensions.canvas.js"></script>  
Learn To Draw Simple ASP.NET Core Blazor Bar Chart Using Canvas Extensions 
 
Step 3 Create Model Class
 
Next, we need to create the Model class for use in our application for binding the Item name And Item count in the Bar Chart.
 
Right Click the Data Folder and create new class file as “ItemMaster.cs”
 
Learn To Draw Simple ASP.NET Core Blazor Bar Chart Using Canvas Extensions 
 
In the class we add the property field name as in the below code.
  1. public String ItemName { getset; }  
  2.    public int SaleCount { getset; }  

Creating Service Class

 
Next we create the ItemMasterService class in order to bind the result in chart with sample Item details with the Item Name and Sale Count per each item. For this we right click on the Data folder and click on Add New Item to add our ItemMasterService class.
 
Learn To Draw Simple ASP.NET Core Blazor Bar Chart Using Canvas Extensions 
 
In this class we create a method to get the ItemMaster details with sample 5 records of Items with item Name and Sale count per each item as random values.
  1. public class ItemMasterService  
  2.     {  
  3.         public Task<ItemMaster[]> GetItemMasters()  
  4.         {  
  5.             var rng = new Random();  
  6.             int ivale = 0;  
  7.             return Task.FromResult(Enumerable.Range(1, 5).Select(index => new ItemMaster  
  8.             {  
  9.                 ItemName = "itm" + rng.Next(1, 100),  
  10.                 SaleCount = rng.Next(20, 100),  
  11.             }).ToArray()); ;  
  12.         }  
  13.     }  
Step 4 - Add the Service to the Startup.cs
 
We need to add the services created by us to the Startup.cs ConfigureServices method.
 
services.AddSingleton<ItemMasterService>();
 
Step 5 - Working with Client Project
 
First, we need to add the Razor Component page
 

Add Razor Component

 
To add the Razor Component page right click the Pages folder from the Client project. Click on Add >> New Item >> Select Razor Component >> Enter your component name. Here we have given the name as DrawingSample.razor
 
Note all the component files need to have the extentions as .razor.
 
Learn To Draw Simple ASP.NET Core Blazor Bar Chart Using Canvas Extensions 
 
In Razor Component Page we have 3 parts of code. First is the iingmport part where we import all the references and models for using in the component, HTML design and data bind part and finally we have the function part to call all the web API to bind in our HTML page and also to perform client-side business logic to be displayed in Component page.
 
Import part
 
First, we import all the needed support files and references in our Razor View page. Here we have first imported our Model class to be used in our view and also imported Blazor Canvas Extension for drawing our own chart control for Blazor applications.
  1. @page "/drawingsample"  
  2. @using Blazor.Extensions.Canvas  
  3. @using Blazor.Extensions;  
  4. @using Blazor.Extensions.Canvas.Canvas2D;  
  5. @using ClazorCharts.Data  
  6. @inject ItemMasterService MasterService  

HTML design and data Bind part

 
Next, we design our DrawingSample details page to display the Bar Chart with item name and Sales count per each item. Here we have added the Blazor Extension Canvaz HTML5 canvas in our Blazor HTML design part for drawing the bar chart.
  1. <h3>Shanu - Draw Bar Chart using Blazor Canvas Extensions</h3>  
  2. <hr />    
  3. <BECanvas Width="500" Height="500" @ref="_canvasReference"></BECanvas>   

Function Part

 
Function part to get the Service result and bind the result in array and to draw and plot the values for displaying the bar chart.
 
Here first we declare the ItemsArray to get bind the result of Item Mater in BarChart.
 
Next we create a string array as pirChartColor to draw each bar with different color from the array.
 
In OnInitializedAsync we get the ItemMasterService result and bind the result in the ItemsArrys.
 
In OnAfterRenderAsync Method we draw the Bar Chart using C# draw objects to the Canvas.
  1. @code {  
  2.     private Canvas2DContext _context;  
  3.     protected BECanvasComponent _canvasReference;  
  4.     ItemMaster[] itemsArrys;  
  5.     private static readonly string[] pirChartColor = new [] {  
  6.         "#3090C7",  
  7.         "#BDEDFF",  
  8.         "#F9B7FF",  
  9.         "#736AFF",  
  10.         "#78C7C7",  
  11.         "#B048B5",  
  12.         "#4E387E",  
  13.         "#7FFFD4",  
  14.         "#3EA99F",  
  15.         "#EBF4FA",  
  16.         "#F9B7FF",  
  17.         "#8BB381",  
  18.         //"#6CBB3C", "#F87217", "#EAC117", "#EDDA74", "#CD7F32", "#CCFB5D", "#FDD017", "#9DC209", "#E67451", "#728C00","#617C58", "#64E986"  
  19.     };  
  20.     protected override async Task OnInitializedAsync() {  
  21.         itemsArrys = await MasterService.GetItemMasters();  
  22.     }  
  23.     protected override async Task OnAfterRenderAsync(bool firstRender) {  
  24.         int lastend = 0;  
  25.         int xSpace = 10;  
  26.         int XvalPosition = xSpace;  
  27.         int maxDataVal = itemsArrys.Max(row => row.SaleCount);  
  28.         int widthcalculation = (Convert.ToInt32(_canvasReference.Width) - 100) / itemsArrys.Length;  
  29.         int chartHeight = Convert.ToInt32(_canvasReference.Height) - 40;  
  30.         this._context = await this._canvasReference.CreateCanvas2DAsync();  
  31.         int colorval = 0;  
  32.         // Draw the axises  
  33.         await this._context.BeginPathAsync();  
  34.         await this._context.MoveToAsync(xSpace, xSpace);  
  35.         // first Draw Y Axis  
  36.         await this._context.LineToAsync(xSpace, chartHeight);  
  37.         // Next draw the X-Axis  
  38.     }  
  39. }  
  40. }  

Navigation Menu

 
Now we need to add this newly added DrawingSample Razor page to our left Navigation. For adding this, open the Shared Folder and open the NavMenu.cshtml page and add the menu.
  1. <li class="nav-item px-3">  
  2.             <NavLink class="nav-link" href="DrawingSample">  
  3.                 <span class="oi oi-list-rich" aria-hidden="true"></span> Bar Chart  
  4.             </NavLink>  
  5.         </li>  
Build and Run the Application,
 
Learn To Draw Simple ASP.NET Core Blazor Bar Chart Using Canvas Extensions 
 

Conclusion

 
In this sample we have used a simple method to display the barchart with in 0 to 100 range values. In order to use for any scale, we can find the ratio of each bar and draw the chart. Also we can extend this chart to draw the Legend and other details. As this is our own Chart we can add any functions as per our need.