Population of Sherwood Park over Time

1961 to 2015

by NocturnalThief

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://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: 'Population of Sherwood Park over Time',
        },
        subtitle: {
            text: 'Source: strathcona.ca/local-government/about-strathcona-county/strathcona-county-history-and-heritage/at-a-glance/population-through-the-years',
        },
        xAxis: {
            title: {
                text: 'Year'
            },
        },
        yAxis: {
            title: {
                text: 'Population'
            },
            min: 0
        },
        legend: {
            enabled: false
        },
        series: [
        {
            data: [
            [1961,2923],
            [1966,6339],
            [1971,14282],
            [1976,26534],
            [1981,29285],
            [1984,29382],
            [1987,30846],
            [1989,32408],
            [1990,33829],
            [1991,35504],
            [1992,36807],
            [1993,38595],
            [1994,39614],
            [1998,42457],
            [2000,45629],
            [2001,47645],
            [2003,51544],
            [2005,55063],
            [2006,56845],
            [2008,59409],
            [2009,61660],
            [2011,64733],
            [2012,65465],
            [2015,68782]
            ]
        }]
    });
});