html5 laboratory - drawing in the canvas

Creating a bar chart with canvas

21st February 2010

The experiment

The new <canvas> element is one of the new goodies that comes along with HTML5. The <canvas> element allows you to programmatically draw via JavaScript. This has all sorts of possibilites, from generating graphs and charts to showing ball animations. It is on the first of these that I will concentrate, showing how a simple bar chart can be created on the <canvas> element with JavaScript.

The process

To begin with, let's take a quick look at the <canvas> element itself and what it offers. I will only briefly go into what it provides, a detailed draft of what it provides can be found over at the WHATWG site. You may also want to have a look at the HTML5 canvas cheat sheet which shows you in a nutshell what is available, which you can then delve into deeper when you want.

The element currently only has two attributes available:

  • width — which specifies the width of the canvas area
  • height — which indicates the canvas' height

That's it. It does however also have two methods which are available:

  • getContext(string contextId) — which takes an id and returns a refence to a context of the <canvas> element
  • toDataURL([string type], arg1, arg2...) — which returns a URL to an image in a canvas

There are also a large number of attributes methods that are available for use with the <canvas> element context that is returned from getContext(string contextId) which of course requires JavaScript. I will list the ones that I use for my bar chart example here, but the HTML5 canvas cheat sheet gives you a condensed view of them all.

  • beginPath() — resets the current path
  • closePath() — marks the current sub-path as closed, and starts a new sub-path that points to the same start and end of the sub-path that was just closed
  • fill() — fills the sub-paths with the current fill style
  • stroke() — draws a stroke on the current sub-path using the current stroke style
  • moveTo(float x, float y) — creates a new sub-path with the given x y co-ordinates
  • lineTo(float x, float y) — adds the point indicated by the given x y co-ordinates to the sub-path and connects it to the previous sub-path with a straight line
  • rect(float x, float y, float w, float h) — adds a new closed sub-path to the path which represents a rectangle using the given values
  • fillText(string text, float x, float y, [float maxWidth]) — fills the given text in the given position

First of all, the canvas needs to be defined within the HTML(5) document:

<canvas id="graphSpace" width="800" height="400"></canvas>

Now to the JavaScript. The first thing that we must obtain is a handle to the canvas to ensure that the element is actually within the DOM, and to check if the browser actually supports it. Once this is obtained, a context to the canvas element is obtained:

var graphCanvas = document.getElementById('graphSpace');
// Ensure that the element is available within the DOM
if (graphCanvas && graphCanvas.getContext) {
// Open a 2D context within the canvas
var context = graphCanvas.getContext('2d'); // Bar chart data
var data = new Array(5);
data[0] = "apples,200";
data[1] = "oranges,120";
data[2] = "bananas,80";
data[3] = "kiwis,230";
data[4] = "tangarines,340"; // Draw the bar chart
drawBarChart(context, data, 50, 100, (graphCanvas.height - 20), 50);
}

The data for the bar chart is simply contained within an array, with each element containing the name of the data and the data's value separated by a comma. This is followed by a call to drawBarChart() which takes the data and draws the actual bar chart. The full code of this function is displayed below:

function drawBarChart(context, data, startX, barWidth, chartHeight, markDataIncrementsIn) {
// Draw the x and y axes
context.lineWidth = "1.0";
var startY = 380;
drawLine(context, startX, startY, startX, 30);
drawLine(context, startX, startY, 570, startY);
context.lineWidth = "0.0";
var maxValue = 0;
for (var i=0; i < data.length; i++) {
// Extract the data
var values = data[i].split(",");
var name = values[0];
var height = parseInt(values[1]);
if (parseInt(height) > parseInt(maxValue)) maxValue = height; // Write the data to the chart
context.fillStyle = "#b90000";
drawRectangle(context,startX + (i * barWidth) + i,(chartHeight - height),barWidth,height,true); // Add the column title to the x-axis
context.textAlign = "left";
context.fillStyle = "#000";
context.fillText(name, startX + (i * barWidth) + i, chartHeight + 10, 200);
}
// Add some data markers to the y-axis
var numMarkers = Math.ceil(maxValue / markDataIncrementsIn);
context.textAlign = "right";
context.fillStyle = "#000";
var markerValue = 0;
for (var i=0; i < numMarkers; i++) {
context.fillText(markerValue, (startX - 5), (chartHeight - markerValue), 50);
markerValue += markDataIncrementsIn;
}
}

There are two further functions, drawLine() and drawRectangle() which are called and are defined as such:

// drawLine - draws a line on a canvas context from the start point to the end point
function drawLine(contextO, startx, starty, endx, endy) {
contextO.beginPath();
contextO.moveTo(startx, starty);
contextO.lineTo(endx, endy);
contextO.closePath();
contextO.stroke();
} // drawRectangle - draws a rectangle on a canvas context using the dimensions specified
function drawRectangle(contextO, x, y, w, h, fill) {
contextO.beginPath();
contextO.rect(x, y, w, h);
contextO.closePath();
contextO.stroke();
if (fill) contextO.fill();
}

You can (probably) see this bar chart working, although Internet Explorer may have issues (see below). All this code, whilst quite self explanatory, probably requires some explanation.

drawBarChart() starts by drawing the x and y axes of the graph by calling drawLine() twice, with different co-ordinates. The attribute lineWidth is used to set the thickness of the lines and reset afterwards to 0.

The code then parses the data array which contains the actual data for the bar chart. This extracts the name of a bar for the chart, along with the value it should be set to. The function drawRectangle() is then called which draws the rectangle in it's appropriate place. The fillText() method is then called to add the name of the drawn column. This is repeated for each element in the array until all the bars are drawn.

The last stage is to draw some measurement markers on the y-axis. This is done using the markDataIncrementsIn paramenter which simply indicates the scale that the increments are to be indicated on this axis (e.g. every 50, or 100). In the example, the value is 50.

The resulting graph, if you've not already looked at the bar chart itself or you're using Internet Explorer (sigh), looks as follows:

 

As usual, there are some browser compatability issues that come in the way of Internet Explorer. The <canvas> element isn't supported at all with IE, but thankfully the clever guys over at explorercanvas have created a JavaScript file which when downloaded and included for IE:

<!--[if IE]><script src="j/excanvas.js"></script><![endif]-->

causes the <canvas> element to work correctly in Internet Explorer. Or mostly correctly. My bar chart example doesn't seem to work.

The results

This is just a very small part of what the <canvas> can help you do. As mentioned above, there are many other methods that can be called on the canvas context which allow you to manipulate images, add borders, drop a shadow, draw circles, arcs, Bezier and quadratic curves and others. Future experiments on this site will look into some of these various other methods.

Watch this space!

html5 laboratory - drawing in the canvas的更多相关文章

  1. html5 中的SVG 和canvas

    想到昨天看资料的时候,发现html5 中的SVG 和canvas 都可以表示图形,那它们到底有哪些区别呢?该如何正确的使用它们呢? 1.SVG:可缩放矢量图形,(Scalable Vector Gra ...

  2. Pro HTML5 Programming(Second Edition)2.Canvas API(2)

    1.在页面中加入canvas元素 eg: <!DOCTYPE html> <html lang="en"> <head> <meta ch ...

  3. Pro HTML5 Programming(Second Edition)2.Canvas API(1)

    1.在使用HTML5的Canvas元素时,考虑到有些浏览器不支持canvas元素,或是不支持HTML5 Canvas API中的某些特性,开发人员最好提供一份替代代码. 以下代码展示如何在canvas ...

  4. HTML5学习(六)---------SVG 与Canvas

    参考教程:http://www.w3school.com.cn/html5/html_5_canvas_vs_svg.asp Canvas 和 SVG 都允许您在浏览器中创建图形,但是它们在根本上是不 ...

  5. 自学HTML5第四节(canvas画布详解)

    canvas画布好像可是说是HTML5的精华了,一定要学好,嗯嗯,绚丽的东西就要从基础的开始.... 先看看啥玩意叫做canvas 什么是 Canvas? HTML5 的 canvas 元素使用 Ja ...

  6. 玩转html5(二)----用canvas结合脚本在画布上画简单的图(html5又一强大功能)

    在html5中可以使用canvas标签在画布上画图,先直接上代码,这篇文章先简单介绍一下canvas的使用方法,简单画几个圆,矩形,三角形,写字. 在代码中均给出了注释,在这里特别强调的一点是:使用c ...

  7. 有趣html5(两)----使用canvas结合剧本画在画布上的简单图(html5另一个强大)

    请珍惜劳动小编成果,这篇文章是原来小编,转载请注明出处. 于html5中能够使用canvas标签在画布上绘图,先直接上代码,这篇文章先简介一下canvas的用法.简单画几个圆,矩形,三角形,写字. 在 ...

  8. HTML5 & CSS3 初学者指南(4) – Canvas使用

    介绍 传统的HTML主要用于文本的创建,可以通过<img>标签插入图像,动画的实现则需要第三方插件.在这方面,传统的HTML极其缺乏满足现代网页多媒体需求的能力.HTML5的到来,带来了新 ...

  9. HTML5 & CSS3初学者指南(4) – Canvas使用

    介绍 传统的HTML主要用于文本的创建,可以通过<img>标签插入图像,动画的实现则需要第三方插件.在这方面,传统的HTML极其缺乏满足现代网页多媒体需求的能力.HTML5的到来,带来了新 ...

随机推荐

  1. POJ-2533最长上升子序列(DP+二分)(优化版)

    Longest Ordered Subsequence Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 41944   Acc ...

  2. hdu 5641 King's Phone(暴力模拟题)

    Problem Description In a military parade, the King sees lots of new things, including an Andriod Pho ...

  3. html和css实现一级菜单和二级菜单学习笔记

    实现一级菜单: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> ...

  4. oracle查询优化

    1. 排序合理查询条件 Oracle自下而上分析顺序WHERE收条,从优化性能的角度.它建议,这些条件将能够过滤掉大量行书写的WHERE在条款结束, 之间的连接条件置于其它WHERE子句之前,即对易排 ...

  5. 设置 git config 的一些默认配置

    设置 git status的颜色. git config --global color.status auto 一.Git已经在你的系统中了,你会做一些事情来客户化你的Git环境.你只需要做这些设置一 ...

  6. NET基础课--对象的筛选和排序(NET之美)

    1.数据量不大的时候取出数据缓存于服务器,然后排序,筛选等基于缓存进行以提高效率. 排序或筛选的方法是使用集合类型提供的,如List<T>.sort()  List<T>.Fi ...

  7. JS 事件对象和事件冒泡

    1.事件对象 js的事件对象中保存了当前被触发事件的一些相关的属性信息,如事件源.事件发生时的鼠标位置.事件按键等. 事件对象的获取方法: IE中可以window.event直接获取,而Firefox ...

  8. DBHelper 类(网上收集)

    这个是我网上找的,觉得不错的一个DBHelper类,下面是作者话: // 微软的企业库中有一个非常不错的数据操作类了.但是,不少公司(起码我遇到的几个...),对一些"封装"了些什 ...

  9. break,continue,return 区别

    using System;using System.Collections.Generic;using System.Text; namespace breakcontinue_test{    cl ...

  10. Linux中oracle安装时候报ora-00119解决办法

    ORA-00119: invalid specification for system parameter LOCAL_LISTENER ORA-00130: invalid listener add ...