JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://cdn.kendostatic.com/2012.1.322/js/kendo.all.min.js"></script>
<!DOCTYPE html>
<html>
    <head>
        <title>Bar chart</title>
    </head>
    <body>
    <div id="chart" style="width: 400px; height: 400px;"></div>
    </body>
</html>

JavaScript

$(document).ready(function() {
    $("#chart").kendoChart({
        transitions: false,
        series: [{
            type: "pie",
            data: [ {
                category: "Hydro",
                value: 31
            } ]
        }]
    });
});