JSFiddle - React, Tailwind, and code Playground

by polm23

HTML

<script src="http://dampfkraft.com/highcharts.js"></script>
<div id="cchc-graph" style="width: 100%;height:400px"></div>
<p>hello?</p>

JavaScript

var chart;
$(document).ready(function() {
    chart = new Highcharts.Chart({
        chart: {
            renderTo: 'cchc-graph'
        },
        xAxis: {
            min: 1,
            max: 15,
            tickinterval: 1
        },
        yAxis: {
            min: 0
        },
        title: {
            text: 'Characteristic Curve for file /home/23/code/noriega/montecristo'
        },
        series: [
            {
            type: 'line',
            data: [0.0950584, 0.161253, 0.215679, 0.167143, 0.101439, 0.0804955, 0.0621357, 0.0448083, 0.0337482, 0.0196518, 0.00933607, 0.00540733, 0.0025982, 0.00124535, 2.02826e-06],
            marker: {
                radius: 4
            }}]
    });

});