html5 laboratory - drawing in the canvas
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 areaheight— which indicates the canvas' heightThat'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>elementtoDataURL([string type], arg1, arg2...)— which returns a URL to an image in a canvasThere are also a large number of attributes methods that are available for use with the
<canvas>element context that is returned fromgetContext(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 pathclosePath()— 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 closedfill()— fills the sub-paths with the current fill stylestroke()— draws a stroke on the current sub-path using the current stroke stylemoveTo(float x, float y)— creates a new sub-path with the given x y co-ordinateslineTo(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 linerect(float x, float y, float w, float h)— adds a new closed sub-path to the path which represents a rectangle using the given valuesfillText(string text, float x, float y, [float maxWidth])— fills the given text in the given positionFirst 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()anddrawRectangle()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 callingdrawLine()twice, with different co-ordinates. The attributelineWidthis used to set the thickness of the lines and reset afterwards to 0.The code then parses the
dataarray 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 functiondrawRectangle()is then called which draws the rectangle in it's appropriate place. ThefillText()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
markDataIncrementsInparamenter 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的更多相关文章
- html5 中的SVG 和canvas
想到昨天看资料的时候,发现html5 中的SVG 和canvas 都可以表示图形,那它们到底有哪些区别呢?该如何正确的使用它们呢? 1.SVG:可缩放矢量图形,(Scalable Vector Gra ...
- Pro HTML5 Programming(Second Edition)2.Canvas API(2)
1.在页面中加入canvas元素 eg: <!DOCTYPE html> <html lang="en"> <head> <meta ch ...
- Pro HTML5 Programming(Second Edition)2.Canvas API(1)
1.在使用HTML5的Canvas元素时,考虑到有些浏览器不支持canvas元素,或是不支持HTML5 Canvas API中的某些特性,开发人员最好提供一份替代代码. 以下代码展示如何在canvas ...
- HTML5学习(六)---------SVG 与Canvas
参考教程:http://www.w3school.com.cn/html5/html_5_canvas_vs_svg.asp Canvas 和 SVG 都允许您在浏览器中创建图形,但是它们在根本上是不 ...
- 自学HTML5第四节(canvas画布详解)
canvas画布好像可是说是HTML5的精华了,一定要学好,嗯嗯,绚丽的东西就要从基础的开始.... 先看看啥玩意叫做canvas 什么是 Canvas? HTML5 的 canvas 元素使用 Ja ...
- 玩转html5(二)----用canvas结合脚本在画布上画简单的图(html5又一强大功能)
在html5中可以使用canvas标签在画布上画图,先直接上代码,这篇文章先简单介绍一下canvas的使用方法,简单画几个圆,矩形,三角形,写字. 在代码中均给出了注释,在这里特别强调的一点是:使用c ...
- 有趣html5(两)----使用canvas结合剧本画在画布上的简单图(html5另一个强大)
请珍惜劳动小编成果,这篇文章是原来小编,转载请注明出处. 于html5中能够使用canvas标签在画布上绘图,先直接上代码,这篇文章先简介一下canvas的用法.简单画几个圆,矩形,三角形,写字. 在 ...
- HTML5 & CSS3 初学者指南(4) – Canvas使用
介绍 传统的HTML主要用于文本的创建,可以通过<img>标签插入图像,动画的实现则需要第三方插件.在这方面,传统的HTML极其缺乏满足现代网页多媒体需求的能力.HTML5的到来,带来了新 ...
- HTML5 & CSS3初学者指南(4) – Canvas使用
介绍 传统的HTML主要用于文本的创建,可以通过<img>标签插入图像,动画的实现则需要第三方插件.在这方面,传统的HTML极其缺乏满足现代网页多媒体需求的能力.HTML5的到来,带来了新 ...
随机推荐
- Find the Duplicate Number 解答
Question Given an array nums containing n + 1 integers where each integer is between 1 and n (inclus ...
- Javascript构造函数学习
我们经常会用JS的构造函数实现Java语言中的继承,今天整理一下构造函数的相关属性及说明. 下面定义一个构造函数: function Person(name, sex, age) { this.nam ...
- MediaInfo源代码分析 1:整体结构
MediaInfo 用来分析视频和音频文件的编码和内容信息,是一款是自由软件 (免费使用.免费获得源代码).之前编程的时候,都是直接调用它提供的Dll,这次突然来了兴趣,想研究一下它内部究竟是怎么实现 ...
- java链接sqlite资料整理
0.SQLite三种JDBC驱动的区别 摘自http://blog.sina.com.cn/s/blog_654337ca01016x4n.html 在DBeaver中看到SQLite有三种JDBC驱 ...
- cookielib模块基础学习
# -*- coding: utf-8 -*- # python:2.x __author__ = 'Administrator' import cookielib #主要用于处理http客户端的co ...
- python基础学习05(核心编程第二版)部分
# -*- coding: utf-8 -*- # ==================== #File: python #Author: python #Date: 2014 #========== ...
- Tcp实现简单的大小写转换功能
有这样一个需求: 客户端给读物段发送文本,服务端会将文本转换为大写再返回客户端 而且客户端可以不断的进行文本转换,当客户端输入over时,转换结束. 分析: 既然是操作设备上的数据,那么久可以使用io ...
- gdalwarp:变形工具
1 gdalwarp:变形工具.包括投影.拼接.及相关的变形功能.此工具功能强大,但效率不高,使用时注意 gdalwarp [--help-general] [--formats] [-s_s ...
- PHP学习笔记十八【构造函数】
<?php class Person{ public $name; public $age; //定义构造函数 function 空格__construct 构造方法没有返回值,对象自动调用 p ...
- -canOpenURL: failed for URL
这在 Xcode 6.4 + iOS 8 时,是不会有的情况,原因是[为了强制增强数据访问安全, iOS9 默认会把所有从NSURLConnection . CFURL . NSURLSession发 ...

