JSFiddle - React, Tailwind, and code Playground

by AbhishekRohan

HTML

<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://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: 'Exam Scores'
        },
        xAxis: {
            categories: ['Test 1', 'Test 2', 'Test 3', 'Test 4', 'Test 5']
        },
        
        series: [{
            type: 'column',
            name: 'Marks',
            data: [83, 72, 71, 63, 74]
        }, {
            type: 'scatter',
            name: 'Pass Mark',
            data: [75, 79, 63, 70, 80],
            marker: {
                symbol:'triangle'
            }
        
        }]
    });
});