In this code you just need to replace the 'response' variable in the series with your data sets and change the JQ selector.
$('#site-stats').highcharts({
chart: {
zoomType: 'x'
},
title: {
text: 'Posts per Day per Network'
},
subtitle: {
text: document.ontouchstart === undefined ?
'Click and drag in the plot area to zoom in' :
'Pinch the chart to zoom in'
},
tooltip: {
formatter: function() {
return 'Time: '+ Highcharts.dateFormat('%I:%M %p', this.x) +'<br/>'+this.series.name+": "+this.y;
}
},
xAxis: {
type: 'datetime',
title: {
text: 'Time of Day'
},
dateTimeLabelFormats: {
hour: '%I:%M %p',
minute: '%I:%M %p',
day: '%I:%M %p',
month: '%I:%M %p',
year: '%I:%M %p'
}
},
yAxis: {
title: {
text: '# Posts'
},
min:0,
type:'int'
},
series:response
});