Visualize: dashboard
Test plugins
by Pavel Savushchyk
HTML
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.0/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/jquery-2.1.0.js"></script>
<script src="https://code.jquery.com/ui/1.11.3/jquery-ui.min.js" integrity="sha256-xI/qyl9vpwWFOXz7+x/9WkG5j/SVnSw21viy8fWwbeE=" crossorigin="anonymous"></script>
<script src="http://underscorejs.org/underscore-min.js"></script>
<script src="http://10.98.51.103:8080/trunk/client/visualize.js?_opt=false"></script>
<div id="container"></div>
<div id="other">
</div>
CSS
#other {
width: 300px;
height: 300px;
background-color: gray;
}
JavaScript
var reportUri = "/public/Samples/Dashboards/2._Performance_Summary_Dashboard";
visualize({
auth: {
name: "superuser",
password: "superuser"
}
}, function (v) {
v.dashboard({
container:"#container",
resource: reportUri
});
});