Wednesday, December 26, 2018

Creating Different Types of Charts in ASP.NET MVC

Creating charts and displaying them in a Web page is a common requirement. As a developer, you might think "What is chart? And, how do I create charts in an ASP.NET application?"
One of the popular chart libraries is canvas.js. The canvas.js library is a simple and robust JavaScript API for the HTML5 element. This library could be used to generate interactive 2D graphs in a Web browser, by using lines, shapes, paths, images, and text. In this article, we will see how to use canvas.js to create various charts, such as Line, Column, Area, and Pie for ASP.NET MVC applications.

No comments:

Post a Comment

Mocking API Responses in Azure API Management Portal

A mock API imitates a real API call by providing a realistic JSON or XML response to the requester. Mock APIs can be designed on a developer...