Highcharts Demo
author(s): Torstein Hønsi
by Nick Hulea
HTML
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<script src="http://www.highcharts.com/js/themes/grid.js"></script>
<div id="container" style="min-width: 400px; height: 400px; margin: 0 auto"></div>
JavaScript
$(function () {
var chart = new Highcharts.Chart({
credits: {
enabled: false
},
chart: {
renderTo: 'container',
type: 'spline'
},
title: {
text: 'Media Partners Analysis'
},
subtitle: {
text: ''
},
xAxis: {
categories: ['May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
tickmarkPlacement: 'on',
title: {
enabled: false
}
},
yAxis: {
title: {
text: 'Millions'
},
startOnTick: false
},
series: [{
name: 'Non media partners',
data: [9422465, 2590042, 17064674, 10377448, 8681615, 16773764, 227180, 132094]
}, {
name: 'All Media Partners ',
data: [1757254, 325877, 745766, 1449983, 8433777, 2886006, 728498, 2654]
}]
});
});