JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://cdn.kendostatic.com/2012.1.229/js/kendo.all.min.js"></script>
<script src="https://da7xgjtj801h2.cloudfront.net/2013.1.319/js/kendo.core.min.js"></script>
<script src="https://da7xgjtj801h2.cloudfront.net/2013.1.319/js/kendo.data.min.js"></script>
<script src="https://da7xgjtj801h2.cloudfront.net/2013.1.319/js/kendo.dataviz.min.js"></script>
<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.1.229/styles/kendo.common.min.css">
<div id="chart"></div>

JavaScript

$("#chart").kendoChart({
     theme: global.app.chartsTheme,
               renderAs: "svg",
  
                legend: {
                    position: "bottom"
                },
                seriesDefaults: {
                    type: "column"
                },
                series: [
                    {   
                        type: "verticalBullet",
                        color: "#d87635",
                        currentField: "score",
                        targetField: "average",
                        labels:
					    {
						    visible: true,
						    format: "{0}",
						    font: "14px Arial",
					    },
                        target: {
                            color: "#444",
                            dashType: "dot",
                            line: {
                              width: 1,
                            }
                            
                        },
                       
                        data: [
                           {
                                score: 93.7,
                                average: 65.2,                              
                            }, {
                                score: 80.2,
                                average: 22.2,
                            }, {
                                score: 60.8,
                                average: 35.2,
                            }, {
                                
                                score: 82.1,
                                average: 45.2,                                
                            }, {
                                score: 74.2,
                                average: 55.2,
                            }
                        ]
                    }
                ],
                categoryAxis: {
                    labels: { rotation: -45 },
                    categories: ["Sales & Contracting", "Implementation & Training", "Functionality & Upgrades", "Service &...