JSFiddle - React, Tailwind, and code Playground
by Milomir Topic
HTML
<script src="http://code.highcharts.com/2.2.4/highcharts.js"></script>
<div id="containerWrapper">
<div id="containter"></div>
</div>
CSS
body {
background-color: #F15928;
background-image: url("http://fakeimg.pl/330x100/FDFEFE/ccc/?text=Can%20you%20see%20me%3F&font=lobster");
padding: 30px;
}
JavaScript
var chart = new Highcharts.Chart({
chart: {
renderTo: 'containter',
borderWidth: 1,
backgroundColor: null
},
series: [{
data: [10, 20, 30, 40]
}]
});