Obama Approval Rating

by asiu

HTML

<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>

<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>

JavaScript

$(function () {
    $('#container').highcharts({
        title: {
            text: 'In general, do you approve or disapprove of the job Barack Obama is doing as president?',
            x: -20 //center
        },
        subtitle: {
            text: 'Source: NBC News/Wall Street Journal poll (August 2014)',
            x: -20
        },
        xAxis: {
            categories: ['Sept 2013', 'Oct 2013', 'Oct 2013', 'Dec 2013', 'Jan 2014', 'Mar 2014',
                'Apr 2014', 'Jun 2014', 'Aug 2014']
        },
        yAxis: {
            title: {
                text: 'Percentage of respondents'
            },
            plotLines: [{
                value: 0,
                width: 1,
                color: '#808080'
            }]
        },
        tooltip: {
            valueSuffix: ' percent'
        },
        legend: {
            layout: 'vertical',
            align: 'right',
            verticalAlign: 'middle',
            borderWidth: 0
        },
        series: [{
            name: 'Approve',
            data: [45, , 47, 42, 43, 43, 41, 44, 41, 40]
      
        }]
    });
});