Frequency of Baby Names in Alberta over Time

2005 to 2015 from open.alberta.ca

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: 'Frequency of Baby Names in Alberta over Time',
            x: -20 //center
        },
        subtitle: {
            text: 'Source: open.alberta.ca/opendata/frequency-and-ranking-of-baby-names-by-year-and-gender',
            x: -20
        },
        xAxis: {
        		title: {
                text: 'Year'
            },
            categories: ['2005', '2006', '2007', '2008', '2009', '2010','2011', '2012', '2013', '2014', '2015'],
        },
        yAxis: {
            title: {
                text: 'Frequency'
            },
            min: 0
        },
        legend: {
            layout: 'vertical',
            align: 'right',
            verticalAlign: 'middle',
            borderWidth: 0
        },
        series: [
        {
            name: 'Rachel',
            data: [88, 104, 73, 77, 69, 57, 50, 63, 48, 43, 41],
            marker: {
                symbol: 'diamond'
            },
            color: 'orange'
        }, {
            name: 'Justin',
            data: [96, 101, 80, 82, 85, 56, 58, 53, 29, 24, 33],
            marker: {
                symbol: 'circle'
            },
            color: 'red'
        }]
    });
});