JSFiddle - React, Tailwind, and code Playground

by pjmorse

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({
        chart: {
            zoomType: 'xy'
        },
        title: {
            text: 'Average Monthly Temperature and Rainfall in Tokyo'
        },
        subtitle: {
            text: 'Source: WorldClimate.com'
        },
        xAxis: [{
            categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
                'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
            crosshair: true
        }],
        yAxis: [{ // Primary yAxis
            title: {
                text: 'Rainfall',
                style: {
                    color: Highcharts.getOptions().colors[0]
                }
            },
            labels: {
                format: '{value} mm',
                style: {
                    color: Highcharts.getOptions().colors[0]
                }
            },
            plotLines: [{
                color: 'red',
                dashStyle: 'shortdash',
                width: 2,
                value: 105.0,
                label: {
                    text: 'Goal: #{value}',
                    verticalAlign: 'top',
                    textAlign: 'center',
                    rotation: 0,
                    style: { color: 'red' },
                    y: 12
                },
                zIndex: 5
            }]

        }],
        tooltip: {
            shared: true
        },
        legend: { enabled: false },
        series: [{
            name: 'Rainfall',
            type: 'bar',
            yAxis: 0,
            data: [49.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4],
            tooltip: {
                valueSuffix: ' mm'
            }
        }]
    });
});