mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-28 08:02:41 +02:00
Squashed 'lib/vis/' content from commit 1d029ca
git-subtree-dir: lib/vis git-subtree-split: 1d029cab7b527f3b292e95d550efbf784dac8699
This commit is contained in:
@@ -0,0 +1,64 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
|
||||
<meta content="utf-8" http-equiv="encoding">
|
||||
<title>Graph2d | Basic Example</title>
|
||||
|
||||
<style type="text/css">
|
||||
body, html {
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
.red {
|
||||
fill:red;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script src="../../dist/vis.js"></script>
|
||||
<link href="../../dist/vis.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<h2>Graph2d | Label Example</h2>
|
||||
<div style="width:700px; font-size:14px; text-align: justify;">
|
||||
This example shows the how to add a label to each point in Graph2d. Each item can have a label object which contains the content and CSS class.In addition, xOffset and yOffset will adjust the location of the label relative to the point being labelled.
|
||||
|
||||
|
||||
<br /><br />
|
||||
|
||||
</div>
|
||||
<br />
|
||||
<div id="visualization"></div>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
var container = document.getElementById('visualization');
|
||||
var label1 = {
|
||||
content: "offset label",
|
||||
xOffset: 20,
|
||||
yOffset: 20
|
||||
}
|
||||
|
||||
var label2 = {
|
||||
content: "Label2",
|
||||
className: "red"
|
||||
}
|
||||
var items = [
|
||||
{x: '2014-06-11', y: 10,label:label1},
|
||||
{x: '2014-06-12', y: 25,label:label2},
|
||||
{x: '2014-06-13', y: 30},
|
||||
{x: '2014-06-14', y: 10},
|
||||
{x: '2014-06-15', y: 15},
|
||||
{x: '2014-06-16', y: 30}
|
||||
];
|
||||
|
||||
var dataset = new vis.DataSet(items);
|
||||
var options = {
|
||||
start: '2014-06-10',
|
||||
end: '2014-06-18',
|
||||
};
|
||||
var graph2d = new vis.Graph2d(container, dataset, options);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user