Introduction

MVC Dynamic Line Chart

In our previous article we have seen in detail about how to draw Bar Chart in MVC web Application. In this article we will see how to draw Line Chart for MVC application using HTML5 Canvas, JQuery, WEB API, and AngularJS.

In this series we will see one-by-one in detail starting from:

  1. MVC Dynamic Bar Chart using WEB API, AngularJS and JQuery
  2. MVC Dynamic Line Chart using WEB API, AngularJS and JQuery
  3. MVC Dynamic Pie Chart using WEB API, AngularJS and JQuery
  4. MVC Dynamic Line&Bar Chart using WEB API, AngularJS and JQuery
  5. MVC Dynamic Donut Chart using WEB API, AngularJS and JQuery
  6. MVC Dynamic Bubble Chart using WEB API, AngularJS and JQuery

Our Chart Features

Chart Features

  1. Chart Source Data: Using WEB API and AngularJS we will be loading chart data from database to a Combobox. In our JQuery we will be plotting chart details from the Combobox.

  2. Chart Number of Category: Chart Items will be dynamically loaded from database. Here we will plot all the Items in Combobox. It’s good to plot fewer than 12 items per chart.

  3. Chart Title Text: User can add their own Chart Title and dynamically change the titles if required. Here in our example we will draw the Title Textbox text at the Bottom of the Chart. (User can redesign and customize as per your requirements if needed).

  4. Chart Water Mark Text: In some cases we need to add our Company name as Water Mark to our Chart. Here in our example we will draw the Water mark Textbox text at the center of the Chart. (User can redesign and customize as per your requirements if needed).

  5. Chart Company LOGO: User can add their own Company logo to the Chart.(Here for sample we have added my own image as a Logo at the Top left corner.( User can redesign and customize as per your requirements if needed.).

  6. Chart Alert Image Display: If the “Alert On” radio button is checked we will display the Alert Image. If the “Alert Off” radio button is clicked then the Alert Image will not be displayed. In JQuery we have declared alertCheckValue = 90; and we check the plot data with this aleartcheckValue and if the plot value is greater than this check value then we will display the alert image in the legend.

    What is the use of Alert Image?

    Let’s consider a real time project. For example we need to display the chart for a Manufacturing factory with production result as Good and Bad. For example if production result for each quality value is above 90 we need to display the Alert green Image and if the quality value is below 90 then we need to display the Red Image with label bars.

    This Alert Image will be easy to identify each quality result with good or bad. (Here for a sample we have used for quality check and display green and red image, but users can customize as per your requirement and add your own image and logics.)

  7. Save Chart as Image: User can save the chart as Image.

  8. Chart Theme: Here we have created 2 themes; Blue and Green for our Chart. We can see both theme outputs here. User can also add any numbers of theme as they require.

Blue Theme

Blue Theme

Green Theme


Green Theme

In this Article we have two parts:

  1. Chart Item and Value Insert/Update to database, Select Chart Item and Value to Combobox from database using WEB API, AngularJS.
  2. Using JQuery Draw our own Chart to HTML5 Canvas tag in our MVC page.

Prerequisites

Code Part

In Code part we can see three steps:

Step 1: Explains about how to create a sample Database, Table, Stored procedure to select, Insert and Update Chart data to SQL Server.

Step 2: Explains about how to create a WEB API to get the data and bind the result to MVC page using AngularJS.

Step 3: Explains about how to draw our own Chart to our MVC Web application using JQuery.

Step 1: Script to create Table and Stored Procedure

We will create a ItemMaster table under the Database ‘ItemsDB. The following is the script to create a database, table and sample insert query. Run this script in your SQL Server. I have used SQL Server 2014.

  1. USEMASTER
  2. GO
  3. -- 1) Check for the Database Exists .If the database is exist then drop and create new DB
  4. IFEXISTS(SELECT [name] FROMsys.databasesWHERE [name] ='ItemsDB')
  5. DROPDATABASE ItemsDB
  6. GO
  7. CREATEDATABASE ItemsDB
  8. GO
  9. USE ItemsDB
  10. GO
  11. -- 1) //////////// Item Masters
  12. IFEXISTS(SELECT [name] FROMsys.tablesWHERE [name] ='ItemMaster')
  13. DROPTABLE ItemMaster
  14. GO
  15. CREATETABLE [dbo].[ItemMaster](
  16. [ItemID] INTIDENTITYPRIMARYKEY,
  17. [ItemName] [varchar](100)NOTNULL,
  18. [SaleCount] [varchar](10)NOTNULL
  19. )
  20. -- insert sample data to Item Master table
  21. INSERTINTO ItemMaster([ItemName],[SaleCount])
  22. VALUES ('Item1','100')
  23. INSERTINTO ItemMaster([ItemName],[SaleCount])
  24. VALUES ('Item2','82')
  25. INSERTINTO ItemMaster([ItemName],[SaleCount])
  26. VALUES ('Item3','98')
  27. INSERTINTO ItemMaster([ItemName],[SaleCount])
  28. VALUES ('Item4','34')
  29. INSERTINTO ItemMaster([ItemName],[SaleCount])
  30. VALUES ('Item5','68')
  31. select*from ItemMaster
  32. -- 1)To Select Item Details
  33. -- Author : Shanu
  34. -- Create date : 2016-03-15
  35. -- Description :To Select Item Details
  36. -- Tables used : ItemMaster
  37. -- Modifier : Shanu
  38. -- Modify date : 2016-03-15
  39. -- =============================================
  40. -- To Select Item Details
  41. -- EXEC USP_Item_Select ''
  42. -- =============================================
  43. CREATEPROCEDURE [dbo].[USP_Item_Select]
  44. (
  45. @ItemName VARCHAR(100)=''
  46. )
  47. AS
  48. BEGIN
  49. SELECT ItemName,
  50. SaleCount
  51. FROM ItemMaster
  52. WHERE
  53. ItemName like @ItemName +'%'
  54. OrderBY ItemName
  55. END
  56. GO
  57. -- 2) To Insert/Update Item Details
  58. -- Author : Shanu
  59. -- Create date : 2016-03-15
  60. -- Description :To Insert/Update Item Details
  61. -- Tables used : ItemMaster
  62. -- Modifier : Shanu
  63. -- Modify date : 2016-03-15
  64. -- =============================================
  65. -- To Insert/Update Item Details
  66. -- EXEC USP_Item_Edit ''
  67. -- =============================================
  68. CREATEPROCEDURE [dbo].[USP_Item_Edit]
  69. (
  70. @ItemName VARCHAR(100)='',
  71. @SaleCount VARCHAR(10)=''
  72. )
  73. AS
  74. BEGIN
  75. IFNOTEXISTS(SELECT*FROM ItemMaster WHERE ItemName=@ItemName)
  76. BEGIN
  77. INSERTINTO ItemMaster([ItemName],[SaleCount])
  78. VALUES (@ItemName,@SaleCount)
  79. Select'Inserted'as results
  80. return;
  81. END
  82. ELSE
  83. BEGIN
  84. Update ItemMaster SET
  85. SaleCount=@SaleCount
  86. WHERE ItemName=@ItemName
  87. Select'Updated'as results
  88. return;
  89. END
  90. Select'Error'as results
  91. END
  92. -- 3)To Max and Min Value
  93. -- Author : Shanu
  94. -- Create date : 2016-03-15
  95. -- Description :To Max and Min Value
  96. -- Tables used : ItemMaster
  97. -- Modifier : Shanu
  98. -- Modify date : 2016-03-15
  99. -- =============================================
  100. -- To Max and Min Value
  101. -- EXEC USP_ItemMaxMin_Select ''
  102. -- =============================================
  103. CREATEPROCEDURE [dbo].[USP_ItemMaxMin_Select]
  104. (
  105. @ItemName VARCHAR(100)=''
  106. )
  107. AS
  108. BEGIN
  109. SELECTMIN(convert(int,SaleCount))as MinValue,
  110. MAX(convert(int,SaleCount))as MaxValue
  111. FROM ItemMaster
  112. WHERE
  113. ItemName like @ItemName +'%'
  114. END
  115. GO
Step 2: Create your MVC Web Application in Visual Studio 2015

After installing our Visual Studio 2015 click Start, then Programs and select Visual Studio 2015 - Click Visual Studio 2015. Click New, then Project, select Web and then select ASP.NET Web Application. Enter your project name and click OK.

ASP.NET Web Application

Select MVC, WEB API and click OK.

Select MVC

Now we have created our MVC Application and as a next step we add our SQL server database as Entity Data Model to our application.

Add Database using ADO.NET Entity Data Model

Right click our project and click Add -> New Item.

Select Data->Select ADO.NET Entity Data Model> Give the name for our EF and click Add.

Select ADO.NET Entity Data Model

Select EF Designer from database and click next.

Select EF Designer

Here click New Connection and provide your SQL-Server Server Name and connect to your database.

Here we can see we have given our SQL server name, Id and PWD and after it connected we have selected the data base as ItemsDB as we have created the Database using my SQL Script.

ItemsDB

Click next and select our tables that need to be used and click finish.

select our tables

Here we can see we have selected our table ItemMasters and all needed Stored Procedures, after selecting click Finish.

table

Once Entity has been created, in the next step we add WEB API to our controller and write function to select/Insert/Update and Delete.

Steps to add our WEB API Controller


Right Click Controllers folder-> Click Add-> Click Controller.

As we are going to create our WEB API Controller. Select Controller and Add Empty WEB API 2 Controller. Give your Name to Web API controller and click ok. Here for my Web API Controller I have given name as “StudentsController”.

StudentsController

As we all know Web API is a simple and easy-to-build HTTP Service for Browsers and Mobiles.

Web API has four methods as Get/Post/Put and Delete where,

In our example we will use both Get and Post as we need to get all image name and descriptions from database and to insert new Image Name and Image Description to database.

Get Method

In our example I have used only the Get method as I am using only Stored Procedure. We need to create object for our Entity and write our Get Method to perform Select/Insert/Update and Delete operations.

Select Operation

We use get Method to get all the details of itemMaster table using entity object and we return the result as IEnumerable .We use this method in our AngularJS and bind the result in ComboBox and insert the new chart Item to Database using the Insert Method.

  1. publicclassItemAPIController: ApiController
  2. {
  3. ItemsDBEntities objapi = newItemsDBEntities();
  4. // To get all Item chart detaiuls
  5. [HttpGet]
  6. publicIEnumerable < USP_Item_Select_Result > getItemDetails(string ItemName)
  7. {
  8. if (ItemName == null) ItemName = "";
  9. return objapi.USP_Item_Select(ItemName).AsEnumerable();
  10. }
  11. // To get maximum and Minimum value
  12. [HttpGet]
  13. publicIEnumerable < USP_ItemMaxMin_Select_Result > getItemMaxMinDetails(string ItemNM)
  14. {
  15. if (ItemNM == null) ItemNM = "";
  16. return objapi.USP_ItemMaxMin_Select(ItemNM).AsEnumerable();
  17. }
  18. // To Insert/Update Item Details
  19. [HttpGet]
  20. publicIEnumerable < string > insertItem(string itemName, string SaleCount)
  21. {
  22. return objapi.USP_Item_Edit(itemName, SaleCount).AsEnumerable();
  23. }
  24. }
Now we have created our Web API Controller Class. Next step we need to create our AngularJS Module and Controller. Let’s see how to create our AngularJS Controller. In Visual Studio 2015 it’s much easy to add our AngularJS Controller. Let’s see step by Step on how to create and write our AngularJS Controller.

Creating AngularJS Controller

First create a folder inside the Script Folder and we give the folder name as “MyAngular”.

First create a folder inside the Script Folder and I given the folder name as “MyAngular
Now add your Angular Controller inside the folder.

Right Click the MyAngular Folder and click Add and New Item > Select Web > Select AngularJS Controller and give name to Controller.We have given my AngularJS Controller as “Controller.js

Controller.js

If the Angular JS package is missing then add the package to your project.

Right Click your MVC project and Click-> Manage NuGet Packages. Search for AngularJS and click Install.

AngularJS

Modules.js: Here we will add the reference to the AngularJS JavaScript and create an Angular Module named “AngularJS_Module”.
  1. // <reference path="../angular.js" />
  2. /// <reference path="../angular.min.js" />
  3. /// <reference path="../angular-animate.js" />
  4. /// <reference path="../angular-animate.min.js" />
  5. var app;
  6. (function () {
  7. app = angular.module("AngularJS_Module", ['ngAnimate']);
  8. })();
Controllers: In AngularJS Controller I have done all the business logic and returned the data from Web API to our MVC HTML page.

1. Variable declarations

Firstly, we declared all the local variables that need to be used.
  1. app.controller("AngularJS_Controller", function($scope, $timeout, $rootScope, $window, $http, FileUploadService)
  2. {
  3. $scope.date = new Date();
  4. // <reference path="../angular.js" />
  5. /// <reference path="../angular.min.js" />
  6. /// <reference path="../angular-animate.js" />
  7. /// <reference path="../angular-animate.min.js" />
  8. var app;
  9. (function()
  10. {
  11. app = angular.module("RESTClientModule", ['ngAnimate']);
  12. })();
  13. app.controller("AngularJS_Controller", function($scope, $timeout, $rootScope, $window, $http)
  14. {
  15. $scope.date = new Date();
  16. $scope.MyName = "shanu";
  17. $scope.sItemName = "";
  18. $scope.itemCount = 5;
  19. $scope.selectedItem = "";
  20. $scope.chartTitle = "SHANU Line Chart";
  21. $scope.waterMark = "SHANU";
  22. $scope.ItemValues = 0;
  23. $scope.ItemNames = "";
  24. $scope.showItemAdd = false;
  25. $scope.minsnew = 0;
  26. $scope.maxnew = 0;
  27. }
  28. }
2. Methods

Select Method,

Methods

Here we get all the data from WEB API and bind the result to our ComboBox and we have used another method to get the maximum and Minimum Value of Chart Value and bind in hidden field.

  1. // This method is to get all the Item Details to bind in Combobox for plotting in Graph
  2. selectuerRoleDetails($scope.sItemName);
  3. // This method is to get all the Item Details to bind in Combobox for plotting in Graph
  4. function selectuerRoleDetails(ItemName)
  5. {
  6. $http.get('/api/ItemAPI/getItemDetails/',
  7. {
  8. params:
  9. {
  10. ItemName: ItemName
  11. }
  12. }).success(function(data)
  13. {
  14. $scope.itemData = data;
  15. $scope.itemCount = $scope.itemData.length;
  16. $scope.selectedItem = $scope.itemData[0].SaleCount;
  17. }).error(function()
  18. {
  19. $scope.error = "An Error has occured while loading posts!";
  20. });
  21. $http.get('/api/ItemAPI/getItemMaxMinDetails/',
  22. {
  23. params:
  24. {
  25. ItemNM: $scope.sItemName
  26. }
  27. }).success(function(data)
  28. {
  29. $scope.itemDataMaxMin = data;
  30. $scope.minsnew = $scope.itemDataMaxMin[0].MinValue;
  31. $scope.maxnew = $scope.itemDataMaxMin[0].MaxValue;
  32. }).error(function()
  33. {
  34. $scope.error = "An Error has occured while loading posts!";
  35. });
  36. }
Insert Method

User can Insert or update Chart Item value by clicking Add Chart Item Details. After validation we pass the Chart Item name and Value to WEB API method to insert into our database.

Insert Method
  1. //Save File
  2. $scope.saveDetails = function()
  3. {
  4. $scope.IsFormSubmitted = true;
  5. $scope.Message = "";
  6. if ($scope.ItemNames == "")
  7. {
  8. alert("Enter Item Name");
  9. return;
  10. }
  11. if ($scope.ItemValues == "")
  12. {
  13. alert("Enter Item Value");
  14. return;
  15. }
  16. if ($scope.IsFormValid)
  17. {
  18. alert($scope.ItemNames);
  19. $http.get('/api/ItemAPI/insertItem/',
  20. {
  21. params:
  22. {
  23. itemName: $scope.ItemNames,
  24. SaleCount: $scope.ItemValues
  25. }
  26. }).success(function(data)
  27. {
  28. $scope.CharDataInserted = data;
  29. alert($scope.CharDataInserted);
  30. cleardetails();
  31. selectuerRoleDetails($scope.sItemName);
  32. }).error(function()
  33. {
  34. $scope.error = "An Error has occured while loading posts!";
  35. });
  36. }
  37. else
  38. {
  39. $scope.Message = "All the fields are required.";
  40. }
  41. };
  42. });
Step 3: Todraw our Chart using JQuery to our MVC page Canvas Tag

Here we will see in detail about how to draw our Line Chart on our MVC Web Application using JQuery.

Inside the Java Script declare the global variables and initialize the Canvas in JavaScript. In the code I have used comments to easily understand the declarations.

Adding the Chart category colors to array: Here we have fixed to 12 colors and 12 data’s to add with Line Chart. If you want you can add more from here. Here we have two sets of color combinations, one with Green base and one with Blue base. User can add as per your requirement here.

  1. var pirChartColor = ["#6CBB3C", "#F87217", "#EAC117", "#EDDA74", "#CD7F32", "#CCFB5D", "#FDD017", "#9DC209", "#E67451", "#728C00", "#617C58", "#64E986"];
  2. // green Color Combinations
  3. // var pirChartColor = ["#3090C7", "#BDEDFF", "#78C7C7", "#736AFF", "#7FFFD4", "#3EA99F", "#EBF4FA", "#F9B7FF", "#8BB381", "#BDEDFF", "#B048B5", "#4E387E"]; // Blue Color Combinations
  4. //This method will be used to check for user selected Color Theme and Change the color
  5. function ChangeChartColor()
  6. {
  7. if ($('#rdoColorGreen:checked').val() == "Green Theme")
  8. {
  9. pirChartColor = ["#6CBB3C", "#F87217", "#EAC117", "#EDDA74", "#CD7F32", "#CCFB5D", "#FDD017", "#9DC209", "#E67451", "#728C00", "#617C58", "#64E986"]; // green Color Combinations
  10. lineColor = "#3090C7"; // Blue Color for Line
  11. lineOuterCircleColor = "#6CBB3C"; // Green Color for Outer Circle
  12. }
  13. else
  14. {
  15. pirChartColor = ["#3090C7", "#BDEDFF", "#78C7C7", "#736AFF", "#7FFFD4", "#3EA99F", "#EBF4FA", "#F9B7FF", "#8BB381", "#BDEDFF", "#B048B5", "#4E387E"]; // Blue Color Combinations
  16. lineColor = "#F87217"; // Orange Color for the Line
  17. lineOuterCircleColor = "#F70D1A "; // Red Color for the outer circle
  18. }
  19. }
Method to get X plot and Y Plot Value: here we calculate to draw our Chart item in X and in Y Axis.
  1. // to return the x-Value
  2. function getXPlotvalue(val) {
  3. return (Math.round((chartWidth) / noOfPlots)) * val + (xSpace * 1.5) - 20;
  4. }
  5. // Return the y value
  6. function getYPlotVale(val) {
  7. return chartHeight - (((chartHeight - xSpace) / maxDataVal) * val);
  8. }
Draw Legend: If the Show Legend radio button is clicked then we draw a Legend for our Chart item inside Canvas Tag and also in this method we check to display Alert Image or not.
  1. // This function is used to draw the Legend
  2. function drawLengends()
  3. {
  4. ctx.fillStyle = "#7F462C";
  5. ctx.fillRect(rect.startX, rect.startY, rect.w, rect.h);
  6. //Drawing Inner White color Rectange with in Above brown rectangle to plot all the Lables with color,Text and Value.
  7. ctx.fillStyle = "#FFFFFF";
  8. rectInner.startX = rect.startX + 1;
  9. rectInner.startY = rect.startY + 1;
  10. rectInner.w = rect.w - 2;
  11. rectInner.h = rect.h - 2;
  12. ctx.fillRect(rectInner.startX, rectInner.startY, rectInner.w, rectInner.h);
  13. labelBarX = rectInner.startX + 4;
  14. labelBarY = rectInner.startY + 4;
  15. labelBarWidth = rectInner.w - 10;
  16. labelBarHeight = (rectInner.h / noOfPlots) - 5;
  17. colorval = 0;
  18. // here to draw all the rectangle for Lables with Image display
  19. $('#DropDownList1 option').each(function()
  20. {
  21. ctx.fillStyle = pirChartColor[colorval];
  22. ctx.fillRect(labelBarX, labelBarY, labelBarWidth, labelBarHeight);
  23. // Here we check for the rdoAlert Status is On - If the Alert is on then we display the Alert Image as per the Alert check value.
  24. if ($('#rdoAlaramOn:checked').val() == "Alert On")
  25. {
  26. // Here we can see fo ever chart value we check with the condition .we have initially declare the alertCheckValue as 300.
  27. //so if the Chart Plot value is Greater then or equal to the check value then we display the Green Image else we display the Red Image.
  28. //user can change this to your requiremnt if needed.This is optioan function for the Pie Chart.
  29. if (parseInt($(this).val()) >= alertCheckValue)
  30. {
  31. ctx.drawImage(greenImage, labelBarX, labelBarY + (labelBarHeight / 3) - 4, imagesize, imagesize);
  32. }
  33. else
  34. {
  35. ctx.drawImage(redImage, labelBarX, labelBarY + (labelBarHeight / 3) - 4, imagesize, imagesize);
  36. }
  37. }
  38. //Draw the Pie Chart Label text and Value
  39. ctx.fillStyle = "#000000";
  40. ctx.font = '10pt Calibri';
  41. ctx.fillText($(this).text(), labelBarX + imagesize + 2, labelBarY + (labelBarHeight / 2));
  42. // To Increment and draw the next bar ,label Text and Alart Image.
  43. labelBarY = labelBarY + labelBarHeight + 4;
  44. // labelTextYXVal = labelBarY + labelBarHeight - 4;
  45. colorval = colorval + 1;
  46. });
  47. }
Draw Chart: This is our main Function. Here we get all the details to draw our LineChart. In this function we will draw Chart Titile, Chart Water Mark text, Chart Logo Image and finally call draw Line chart Method to draw our Line chart inside Canvas Tag.
  1. // This is the main function to darw the Charts
  2. function drawChart()
  3. {
  4. ChangeChartColor();
  5. // asign the images path for both Alert images
  6. greenImage.src = '../images/Green.png';
  7. redImage.src = '../images/Red.png';
  8. LogoImage.src = '../images/shanu.jpg';
  9. // Get the minumum and maximum value.here i have used the hidden filed from code behind wich will stored the Maximum and Minimum value of the Drop down list box.
  10. minDataVal = $('input:text[name=hidListMin]').val();
  11. maxDataVal = $('input:text[name=hidListMax]').val();
  12. // Total no of plots we are going to draw.
  13. noOfPlots = $("#DropDownList1 option").length;
  14. maxValdivValue = Math.round((maxDataVal / noOfPlots));
  15. //storing the Canvas Context to local variable ctx.This variable will be used to draw the Pie Chart
  16. canvas = document.getElementById("canvas");
  17. ctx = canvas.getContext("2d");
  18. //globalAlpha - > is used to display the 100% opoacity of chart .because at the bottom of the code I have used the opacity to 0.1 to display the water mark text with fade effect.
  19. ctx.globalAlpha = 1;
  20. ctx.fillStyle = "#000000";
  21. ctx.strokeStyle = '#000000';
  22. //Every time we clear the canvas and draw the chart
  23. ctx.clearRect(0, 0, canvas.width, canvas.height);
  24. //If need to draw with out legend for the Line Chart
  25. chartWidth = canvas.width - xSpace;
  26. chartHeight = canvas.height - ySpace;
  27. // step 1) Draw legend $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$########################
  28. if ($('#chkLegend:checked').val() == "Show Legend")
  29. {
  30. chartWidth = canvas.width - ((canvas.width / 3) - (xSpace / 2));
  31. chartHeight = canvas.height - ySpace - 10;
  32. legendWidth = canvas.width - ((canvas.width / 3) - xSpace);
  33. legendHeight = ySpace;
  34. rect.startX = legendWidth;
  35. rect.startY = legendHeight;
  36. rect.w = canvas.width / 3 - xSpace - 10;
  37. rect.h = canvas.height - ySpace - 10;
  38. //In this method i will draw the legend with the Alert Image.
  39. drawLengends();
  40. }
  41. // end step 1) $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  42. var chartMidPosition = chartWidth / 2 - 60;
  43. //// //If need to draw with legend
  44. //// chartWidth = canvas.width - ((canvas.width / 3) - (xSpace / 2));
  45. //// chartHeight = canvas.height - ySpace - 10;
  46. // Step 2 ) +++++++++++++ To Add Chart Titel and Company Logo
  47. //To Add Logo to Chart
  48. var logoXVal = canvas.width - LogoImgWidth - 10;
  49. var logolYVal = 0;
  50. //here we draw the Logo for teh chart and i have used the alpha to fade and display the Logo.
  51. ctx.globalAlpha = 0.6;
  52. ctx.drawImage(LogoImage, logoXVal, logolYVal, LogoImgWidth, LogoImgHeight);
  53. ctx.globalAlpha = 1;
  54. ctx.font = '22pt Calibri';
  55. ctx.fillStyle = "#15317E";
  56. var titletxt = $('input:text[name=txtTitle]').val();
  57. ctx.fillText(titletxt, chartMidPosition, chartHeight + 60);
  58. ctx.fillStyle = "#000000";
  59. ctx.font = '10pt Calibri';
  60. // end step 2) +++++++++++ End of Title and Company Logo Add
  61. // Step 3 ) +++++++++++++ toDraw the X-Axis and Y-Axis
  62. // >>>>>>>>> Draw Y-Axis and X-Axis Line(Horizontal Line)
  63. // Draw the axises
  64. ctx.beginPath();
  65. ctx.moveTo(xSpace, ySpace);
  66. // first Draw Y Axis
  67. ctx.lineTo(xSpace, chartHeight);
  68. // Next draw the X-Axis
  69. ctx.lineTo(chartWidth, chartHeight);
  70. ctx.stroke();
  71. // >>>>>>>>>>>>> End of X-Axis Line Draw
  72. //end step 3) +++++++++++++++++++++++
  73. // Step 4) <<<<<<<<<<<<<<<<<<<<<<< To Draw X - Axis Plot Values <<<<<<<<<<<<< }}}}}}
  74. // Draw the X value texts
  75. // --->>>>>>>>>>>> for the Bar Chart i have draw the X-Axis plot in with drawBarChart
  76. // <<<<<<<<<<<<<<<<<<<<<<< End of X Axis Draw
  77. // end Step 4) <<<<<<<<<<<<<<<<<<<<<<<
  78. // Step 5){{{{{{{{{{{{
  79. // {{{{{{{{{{{{{To Draw the Y Axis Plot Values}}}}}}}}}}}}}}
  80. var vAxisPoints = 0;
  81. var max = maxDataVal;
  82. max += 10 - max % 10;
  83. for (var i = 0; i <= maxDataVal; i += maxValdivValue)
  84. {
  85. ctx.fillStyle = fotnColor;
  86. ctx.font = axisfontSize + 'pt Calibri';
  87. ctx.fillText(i, xSpace - 40, getYPlotVale(i));
  88. //Here we draw the Y-Axis point line
  89. ctx.beginPath();
  90. ctx.moveTo(xSpace, getYPlotVale(i));
  91. ctx.lineTo(xSpace - 10, getYPlotVale(i));
  92. ctx.stroke();
  93. vAxisPoints = vAxisPoints + maxValdivValue;
  94. }
  95. //}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}
  96. //Step 5) *********************************************************
  97. //Function to Draw our Chart here we can Call/Bar Chart/Line Chart or Pie Chart
  98. drawLineChart();
  99. // end step 6) **************
  100. //Step 7) :::::::::::::::::::: to add the Water mark Text
  101. var waterMarktxt = $('input:text[name=txtWatermark]').val();
  102. // Here add the Water mark text at center of the chart
  103. ctx.globalAlpha = 0.1;
  104. ctx.font = '86pt Calibri';
  105. ctx.fillStyle = "#000000";
  106. ctx.fillText(waterMarktxt, chartMidPosition - 40, chartHeight / 2);
  107. ctx.font = '10pt Calibri';
  108. ctx.globalAlpha = 1;
  109. /// end step 7) ::::::::::::::::::::::::::::::::::::::
  110. }
Draw LineChart: In this function we get all item names and values using foreach of ComboBoxand; here we plot all values and draw line charts using the ComboBox values.
  1. function drawLineChart()
  2. {
  3. // For Drawing Line
  4. ctx.lineWidth = 3;
  5. var value = $('select#DropDownList1 option:selected').val();
  6. ctx.beginPath();
  7. // *************** To Draw the Line and Plot Value in Line
  8. ctx.fillStyle = "#FFFFFF";
  9. ctx.strokeStyle = '#FFFFFF';
  10. ctx.moveTo(getXPlotvalue(0), getYPlotVale(value));
  11. ctx.fillStyle = "#000000";
  12. ctx.font = '12pt Calibri';
  13. ctx.fillText(value, getXPlotvalue(0), getYPlotVale(value) - 12);
  14. var ival = 0;
  15. $('#DropDownList1').val($('#DropDownList1 option').eq(0).val());
  16. $('#DropDownList1 option').each(function(i)
  17. {
  18. if (ival > 0)
  19. {
  20. ctx.lineTo(getXPlotvalue(ival), getYPlotVale($(this).val()));
  21. ctx.stroke();
  22. ctx.fillStyle = "#000000";
  23. ctx.font = '12pt Calibri';
  24. ctx.fillText($(this).val(), getXPlotvalue(ival), getYPlotVale($(this).val()) - 16);
  25. }
  26. ival = ival + 1;
  27. ctx.fillStyle = lineColor;
  28. ctx.strokeStyle = lineColor;
  29. });
  30. // *************** To Draw the Line Dot Cericle
  31. //For Outer Blue Dot
  32. ival = 0;
  33. $('#DropDownList1 option').each(function(i)
  34. {
  35. ctx.fillStyle = lineOuterCircleColor;
  36. ctx.strokeStyle = lineOuterCircleColor;
  37. ctx.beginPath();
  38. ctx.arc(getXPlotvalue(ival), getYPlotVale($(this).val()), 7, 0, Math.PI * 2, true);
  39. ctx.fill();
  40. ctx.fillStyle = lineInnerCircleColor;
  41. ctx.strokeStyle = lineInnerCircleColor;
  42. ctx.beginPath();
  43. ctx.arc(getXPlotvalue(ival), getYPlotVale($(this).val()), 4, 0, Math.PI * 2, true);
  44. ctx.fill();
  45. ival = ival + 1;
  46. });
  47. ctx.lineWidth = 1;
  48. }
Note: Run the SQL Script in your SQL Server to created DB, Table and stored procedure. In web.config change the connection string to your local SQL Server connection. In the attached zip file you can find code for both Bar Chart and for Line chart.

Tested Browsers:
Read more articles on ASP.NET: