Skip to content

Instantly share code, notes, and snippets.

@TorsteinHonsi
Created April 9, 2015 09:08
Show Gist options
  • Save TorsteinHonsi/6beec33147c7dcb3f5d2 to your computer and use it in GitHub Desktop.
Save TorsteinHonsi/6beec33147c7dcb3f5d2 to your computer and use it in GitHub Desktop.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/>
<title>Highcharts test tool - jsFiddle demo</title>
<script type='text/javascript' src='http://code.jquery.com/jquery-compat-git.js'></script>
<style type='text/css'>
#container {
min-width: 300px;
max-width: 800px;
height: 300px;
margin: 1em auto;
}
</style>
<script type='text/javascript'>//<![CDATA[
$(function(){
$('#container').highcharts({
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
}]
});
});//]]>
</script>
</head>
<body>
<script src="http://code.highcharts.com/4.1.4/highcharts.js"></script>
<div id="container"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment