JSFiddle - React, Tailwind, and code Playground

HTML

<<script src="http://code.highcharts.com/highcharts.js"></script><div id="container" style="height: 300px"></div>

JavaScript

var chart = new Highcharts.Chart({
    chart: {
        renderTo: 'container'
    },
    xAxis: {
        type: 'datetime'
    },
    
    yAxis: [{
        title: {
            text: 'XYZ',
            style: {
               color: '#89A54E'
            }
         }      
    },{
        title: {
            text: 'ZYX',
            style: {
               color: '#FF0000'
            }
         }
    }],
    
    series: [{
        data: [[1268629200000,17.87], [1268715600000,17.92], [1268802000000,18.14]]   
    },{
        data: [[1244321197000,429], [1275857197000,580]] ,
        yAxis: 1     
    }]
});