JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://cdn1.zingchart.com/scripts/zingchart/html5_scripts/zingchart-html5-min.js"></script>
<div id="chartId"></div>

JavaScript

var chartData={
    "graphset":[
    {
    "type":"line",
    "series":[
        {
            "values":[47,29,87,10,42,86,40],
        },
        {
            "values":[27,69,34,27,49,47,18]
        }
    ]
},
            {
    "type":"line",
    "series":[
        {
            "values":[47,29,87,10,42,86,40],
        },
        {
            "values":[27,69,34,27,49,47,18]
        }
    ]
},
            {
    "type":"line",
    "series":[
        {
            "values":[47,29,87,10,42,86,40],
        },
        {
            "values":[27,69,34,27,49,47,18]
        }
    ]
},
            {
    "type":"line",
    "series":[
        {
            "values":[47,29,87,10,42,86,40],
        },
        {
            "values":[27,69,34,27,49,47,18]
        }
    ]
}
        ]
};

$(function(){
    zingchart.render({
        id : 'chartId',
        width  : '600',
        height : '400',
        data : chartData
    });
    
});