JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://code.highcharts.com/highcharts.src.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<script src="https://code.highcharts.com/modules/grid-axis.src.js"></script>
<div id="container" style="min-width: 310px; max-width: 800px; height: 400px; margin: 0 auto"></div>
JavaScript
$(function () {
Highcharts.chart('container', {
"series":[
{
"name":"Fluktuation",
data:[
[
1,
]
]
}
],
"xAxis":{
"type":"category"
},
"chart":{
"type":"bar"
}
})
});