-
-
Save arossouw/78d8e737629a2de8054f12b20d5cbc6b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function () { | |
Highcharts.chart('container', { | |
chart: { | |
type: 'bar' | |
}, | |
title: { | |
text: 'Events by Monitoring Server' | |
}, | |
subtitle: { | |
text: 'January 2017' | |
}, | |
xAxis: { | |
categories: ['Colombia', 'Mozambique', 'United Kingdom', 'Ghana CFC'], | |
title: { | |
text: null | |
} | |
}, | |
yAxis: { | |
min: 0, | |
title: { | |
text: 'Number of Events', | |
align: 'high' | |
}, | |
}, | |
tooltip: { | |
valueSuffix: ' millions' | |
}, | |
plotOptions: { | |
bar: { | |
dataLabels: { | |
enabled: false | |
} | |
} | |
}, | |
credits: { | |
enabled: false | |
}, | |
series: [{ | |
data: [2006, 49, 6, 21], | |
showInLegend: false | |
}] | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment