JSFiddle - React, Tailwind, and code Playground

by Coogan

HTML

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

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

<pre id="csv" style="display:none">Year,Annual mean,5 year...

JavaScript

$(function () {
    // Create the chart
    $('#container').highcharts({

        title: {
            text: 'Highcharts data from Google Spreadsheets'
        },

        data: {
        googleSpreadsheetKey: '0AqZ_B1kuWqhjdHNNdURJeS1XZDFrZGM4d1J2Zl9IRGc',
        googleSpreadsheetWorksheet: 1
    },

    });
});