JSFiddle - React, Tailwind, and code Playground

by raulb

HTML

<script src="http://keith-wood.name/js/jquery.gchart.js"></script>
<script src="https://www.quickbase.com/db/bfx7sqpm8?a=dbpage&amp;pagename=SurveyData.js"></script>
<div id="tableChart"></div>

CSS

#tableChart { width: 450px; height: 300px }

JavaScript

$('#tableChart').gchart({
   type: 'barVertGrouped',

    maxValue: 80,

    title: 'Summary Chart (All Groups)',

    titleColor: 'black',

    backgroundColor: $.gchart.gradient('horizontal', 'ccffff', 'ccffff00'),

    barWidth: 10,
    barSpacing: 1,
    barGroupSpacing: 15,
    
    series: [$.gchart.series('HTML',10, 'red'),
             $.gchart.series('CSS',20, 'blue'),
             $.gchart.series('JavaScript',30, 'green'),
             $.gchart.series('jQuery',40, 'black')],
   
    axes: [$.gchart.axis('bottom', levels, 'black'),
           $.gchart.axis('y', 0, 80)],

    legend: 'right'
});