Skip to content

Instantly share code, notes, and snippets.

@crtr0
Created December 3, 2012 20:51
Show Gist options
  • Save crtr0/4197917 to your computer and use it in GitHub Desktop.
Save crtr0/4197917 to your computer and use it in GitHub Desktop.
Initializing highcharts.js
var chart;
// Attach a handler to the window load event.
$(document).ready(function() {
chart = new Highcharts.Chart({
chart: {
renderTo: 'chart',
type: 'bar'
},
title: {
text: 'Voice and SMS Voting'
}
// more...
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment