JSFiddle - React, Tailwind, and code Playground

by Nicholas Mastracchio

HTML

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

JavaScript

var myChart={
"graphset":[
    {
        "type":"bar",
        "series":[
            {
                "values":[11,26,7,44,11]
            },
            {
                "values":[42,13,21,15,33]
            },
            {
                "values":[23,24,13,4,18]
            }
        ]
    }
]
};

$(function(){
    
    zingchart.render({
        id : 'zc',
        width  : '100%',
        height : 400,
        data : myChart
    });
    
});