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: '1jorW9n3OO5VL_ZsdMeUthI2CqI4WRug1HzX1UjQbRmU',
        googleSpreadsheetWorksheet: 1
    },

    });
});