- 代码案例
<!doctype html>
<html>
<head>
<title>Timeline</title>
<script type="text/javascript" src="https://unpkg.com/vis-timeline@latest/standalone/umd/vis-timeline-graph2d.min.js"></script>
<link href="https://unpkg.com/vis-timeline@latest/styles/vis-timeline-graph2d.min.css" rel="stylesheet" type="text/css" />
<style type="text/css">
body,
html {
font-family: sans-serif;
}
#visualization {
width: 600px;
}
</style>
</head>
<body>
<div id="visualization"></div>
<script type="text/javascript">
var container = document.getElementById("visualization");
var groups = new vis.DataSet();
groups.add({ id: 0, content: "group0" });
groups.add({ id: 1, content: "group1" });
groups.add({
id: 2,
content: "group2",
options: { yAxisOrientation: "right" },
});
var items = [
{ x: "2014-06-11", y: 10, group: 0 },
{ x: "2014-06-12", y: 25, group: 0 },
{ x: "2014-06-13", y: 30, group: 0 },
{ x: "2014-06-14", y: 10, group: 0 },
{ x: "2014-06-15", y: 15, group: 0 },
{ x: "2014-06-16", y: 30, group: 0 },
{ x: "2014-06-11", y: 12, group: 1 },
{ x: "2014-06-12", y: 15, group: 1 },
{ x: "2014-06-13", y: 34, group: 1 },
{ x: "2014-06-14", y: 24, group: 1 },
{ x: "2014-06-15", y: 5, group: 1 },
{ x: "2014-06-16", y: 12, group: 1 },
{ x: "2014-06-11", y: 22, group: 2 },
{ x: "2014-06-12", y: 14, group: 2 },
{ x: "2014-06-13", y: 24, group: 2 },
{ x: "2014-06-14", y: 21, group: 2 },
{ x: "2014-06-15", y: 30, group: 2 },
{ x: "2014-06-16", y: 18, group: 2 },
];
var dataset = new vis.DataSet(items);
var options = {
style: "bar",
barChart: { width: 50, align: "center", sideBySide: true }, // align: left, center, right
drawPoints: true,
dataAxis: {
left: {
range: { min: -5, max: 40 }, // y轴区间
},
right: {
range: { min: -5 },
},
icons: true,
},
orientation: "top",
start: "2014-06-10", // x轴区间
end: "2014-06-18",
};
var graph2d = new vis.Graph2d(container, items, groups, options);
</script>
</body>
</html>
- 效果图