Highcharts Demo
author(s): Torstein Hønsi
by unklefolk
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 400px"></div>
JavaScript
$(function () {
$('#container').highcharts({
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
labels:
{
enabled: false
}
},
yAxis: {
labels:
{
enabled: false
},
title:{
text:null
}
},
title:{
text:null
},
subTitle:{
text:null
},
legend:{
enabled: false
},
plotOptions: {
series: {
cursor: 'pointer',
point: {
events: {
click: function () {
alert('Category: ' + this.category + ', value: ' + this.y);
}
}
}
}
},
series: [{
data: [0,0,0,0,0,0,0,0,0,0,0,0]
}]
});
});