Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
May 18, 2017 12:00 pm

How to Draw Bar Charts Using JavaScript and HTML5 Canvas

Final product image
What You'll Be Creating

In an earlier tutorial we covered how to draw a pie chart or doughnut chart using HTML5 canvas. In this tutorial I will show you how to use JavaScript and the HTML5 canvas as a means to graphically display data by using bar charts.

There are easier ways to create charts than coding one from scratch, for example this complete charting library from CodeCanyon.

Infographic charts and graphics HTML tags library
Infographic Charts Library from CodeCanyon

But if you want to know what it takes to create a library like this, this tutorial is for you.

What Is a Bar Chart?

Bar charts are very common tools used to represent numerical data. From financial reports to PowerPoint presentations to infographics, bar charts are used very often since they offer a view of numerical data that is very easy to understand.

Bar charts represent numerical data using bars, which are rectangles with either their widths or heights proportional to the numerical data that they represent.

There are many types of bar charts:


  • horizontal bar charts and vertical bar charts depending on the chart orientation

  • stacked bar charts or classic bar charts for representing multiple series of data

  • 2D or 3D bar charts

  • etc.

What Are the Components of a Bar Chart?

Let's take a look at the components that make up a bar chart regardless of its type:

Components of a bar chart

  • The chart data: these are sets of numbers and associated categories which are represented by the chart.

  • Name of the data series (1).

  • The chart grid (2): giving a reference system so that the visual representation can be easily understood.

  • The bars (3): color-filled rectangles with dimensions proportional to the data represented.

  • Chart legend (4): shows the correspondence between the colors used and the data they represent.

Now that we know the components of a bar chart, let's see how we can write the JavaScript code to draw a chart like this.

Drawing the Bar Chart Using JavaScript

Setting Up the JS Project

To start drawing using JavaScript and the HTML5 canvas, we will need to set up our project like this:


  • Create a folder to hold the project files; let's call this folder bar-chart-tutorial.

  • Inside the project folder, create a file and call it index.html. This will contain our HTML code.

  • Also inside the project folder, create a file and call it script.js. This will contain the JavaScript code for drawing the bar chart.

We'll keep things very simple and add the following code inside index.html:

We have the <canvas> element with the ID myCanvas so that we can reference it in our JS code. We then load the JS code via the <script> tag.

Add the following code in the script.js file: 

This gets a reference to the canvas element and then sets the width and height to 300px. To draw on the canvas, we only need a reference to its 2D context, which contains all the drawing methods.

Adding a Few Helper Functions

Drawing the bar chart only requires knowing how to draw two elements:


  • drawing a line: for drawing the grid lines

  • drawing a color-filled rectangle: for drawing the bars of the chart

Let's create the helper JS functions for these two elements.  We will add the functions in our script.js file.

The drawLine function takes six parameters:



  1. ctx: reference to the drawing context


  2. startX: the X coordinate of the line starting point


  3. startY: the Y coordinate of the line starting point



  4. endX: the X coordinate of the line end point



  5. endY: the Y coordinate of the line end point



  6. color: the color of the line

We are modifying the color settings for the strokeStyle. This determines the color used to draw the line. We use ctx.save() and ctx.restore() so that we don't affect the colors used outside this function.

We draw the line by calling beginPath(). This informs the drawing context that we are starting to draw something new on the canvas. We use moveTo() to set the starting point, call lineTo() to indicate the end point, and then do the actual drawing by calling stroke().

Another helper function that we need is a function to draw a bar—which is a color-filled rectangle. Let's add it to script.js:

The drawBar function takes six parameters:



  1. ctx: reference to the drawing context


  2. upperLeftCornerX: the X coordinate of the bar's upper left corner


  3. upperLeftCornerY: the X coordinate of the bar's upper left corner


  4. width: the width of the bar



  5. height: the height of the bar


  6. color: the color of the bar

The Bar Chart Data Model

Now that we have the helper functions in place, let's move on to the chart's data model. All types of chart, including bar charts, have a data model behind them. The data model is a structured set of numerical data. For this tutorial we will use a data series of categories and their associated numerical values representing the number of vinyl records in my collection of records grouped by music genre:


  • Classical music: 10

  • Alternative rock: 14

  • Pop: 2

  • Jazz: 12

We can represent this in JavaScript in the form of an object. Let's add it to our script.js file:

Implementing the Bar Chart Component

Let's implement the component that will do the actual drawing of our bar chart. We will do this by adding the following JavaScript object to our script.js file:

The class starts by storing the options passed as parameters. It stores the canvas reference and creates a drawing context also stored as a class member. Then it stores the colors array passed as options.

The next part is the most consistent, the draw() function. This will draw the chart by first drawing the grid lines, the grid markers and then the bars using the parameters passed via the options object.

Looking at the draw() function, we can see that first we calculate the maximum value for our data model. We need this number because we will need to scale all the bars according to this value and according to the size of the canvas. Otherwise, our bars might go outside the display area, and we don't want that.

The canvasActualHeight and canvasActualWidth variables store the height and width of the canvas adjusted using the value of the padding passed via options. The padding variable indicates the number of pixels between the edge of the canvas and the chart inside. 

We then draw the grid lines of the chart. The options.gridScale variable sets the step used for drawing the lines. So a gridScale of 10 will mean drawing grid lines every 10 units.

To draw the grid lines, we use the helper function drawLine(); as for the color of the grid lines, we take it from the options.gridColor variable. Please note that the canvas coordinates start from 0,0 in the top left corner and increase towards the right and bottom, while our grid values increase in value from the bottom towards the top. That is why we used 1 - gridValue/maxValue in the formula calculating the gridY value.

For every grid line, we also draw the value of the grid line 2 pixels above the grid line (that's why we have gridY - 2 for the Y coordinates of the text).

Next we draw the bars by using the helper function drawBar(). The math for calculating the height and width of each bar is pretty straightforward; it takes into account the padding and the value and color for each category in the chart's data model.

Using the Bar Chart Component

Let's now see how to use the Barchart class implemented above. We need to instantiate the class and call the draw() function. Add the following code to the script.js file:

The code creates a new instance of the Barchart class with the required options. Loading the index.html in a browser should produce a result like this:

Simple bar chart using html5 canvas

Adding the Data Series Name and Chart Legend

To add the data series name below the chart, we need to add the following code in the script.js file after the for-loop that draws the bar:

We also need to change the way we call the Barchart component like this:

And here is how the result looks:

Bar chart with data series title

To add the legend, we first need to modify index.html to look like this:

The legend tag will be used as a placeholder for the chart's legend. The for attribute links the legend to the canvas holding the chart. We now need to add the code that creates the legend. We will do this in the index.js file after the code that draws the data series name. The code identifies the legend tag corresponding to the chart, and it will add the list of categories from the chart's data model together with the corresponding color. The resulting index.js file will look like this:

Which will produce a final result looking like this:

HTML5 canvas bar chart final result

Congratulations

We have seen that drawing charts using the HTML5 canvas is actually not that hard. It only requires a bit of math and a bit of JavaScript knowledge. You now have everything you need for drawing your own bar charts.

If you want a quick and easy solution for creating not only bar charts, but loads of other types of charts, you can download the Infographic Charts and Graphics HTML Tags Library or its WordPress plugin counterpart Charts and Graphs WordPress Visual Designer.

Infographic charts and graphics HTML tags library
Infographic Charts Library from CodeCanyon

Original Link:

Share this article:    Share on Facebook
No Article Link

TutsPlus - Code

Tuts+ is a site aimed at web developers and designers offering tutorials and articles on technologies, skills and techniques to improve how you design and build websites.

More About this Source Visit TutsPlus - Code