Dear All,
Can anyone please advise how to place the 3rd party component from VIS.JS website, the index.html code is below.
I want to place RED Statement below on to UI5 SHELL. Please can anyone advise how to do this ?
Note: I have attached with this thread, the vis.js and vis.css file which is referenced in below index.html file.
<!DOCTYPE HTML>
<html>
<head>
<title>Timeline | Basic demo</title>
<styletype="text/css">
body, html {
font-family: sans-serif;
}
</style>
<scriptsrc="../../dist/vis.js"></script>
<linkhref="../../dist/vis.css"rel="stylesheet"type="text/css"/>
</head>
<body>
<divid="visualization"></div>
<scripttype="text/javascript">
// DOM element where the Timeline will be attached
var container = document.getElementById('visualization');
// Create a DataSet (allows two way data-binding)
var items =new vis.DataSet([
{id:1, content:'item 1', start:'2013-04-20'},
{id:2, content:'item 2', start:'2013-04-14'},
{id:3, content:'item 3', start:'2013-04-18'},
{id:4, content:'item 4', start:'2013-04-16', end:'2013-04-19'},
{id:5, content:'item 5', start:'2013-04-25'},
{id:6, content:'item 6', start:'2013-04-27'}
]);
// Configuration for the Timeline
var options ={};
// Create a Timeline
var timeline =new vis.Timeline(container, items, options);
</script>
</body>
</html>