JSFiddle - React, Tailwind, and code Playground
by Pavel Savushchyk
HTML
<script src="http://code.highcharts.com/4.0.3/highcharts.src.js"></script>
<script src="http://localhost:8080/bugfix/client/visualize.js?_opt=false"></script>
<div id="container"></div>
CSS
#container {
height: 800px;
width: 100%;
}
JavaScript
visualize({
auth: {
name: "jasperadmin",
password: "jasperadmin",
organization: "organization_1"
}
}, function (v) {
var report = v.dashboard({
resource: "/public/Samples/Dashboards/2._Performance_Summary_Dashboard",
container: "#container",
error: function(e) {
alert(e);
}
});
});