HighCharts
Like other JS charting libraries that we talked about, HighCharts also renders charts using SVG. We will create the desired chart using this library using the following steps:
- Create the
ch09/HighCharts
folder. - Create the
index.html
file and save the following code in it:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>HighCharts</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script src="//code.jquery.com/jquery-1.11.2.min.js"></script> <script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script> <script src="http://code.highcharts.com/highcharts.js"></script> <script type="text/javascript" src="themes/awesome.js"></script...