展开
拓展 关闭
订阅号推广码
GitHub
视频
公告栏 关闭

vis.js带结束条形图

  • 代码案例
<!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 items = [
{ x: "2014-06-11 00:00:00", end: "2014-06-13 00:00:00", y: 10 },
{ x: "2014-06-13 00:00:00", end: "2014-06-14 00:00:00", y: 15 },
{ x: "2014-06-15 00:00:00", end: "2014-06-16 00:00:00", y: 14 },
{ x: "2014-06-16 00:00:00", end: "2014-06-17 00:00:00", y: 17 },
{ x: "2014-06-17 00:00:00", end: "2014-06-18 00:00:00", y: 20 },
{ x: "2014-06-18 00:00:00", end: "2014-06-25 00:00:00", y: 25 },
];
var dataset = new vis.DataSet(items);
var options = {
style: "bar",
drawPoints: false,
dataAxis: {
icons: true,
},
orientation: "top",
start: "2014-06-05", // x轴区间
end: "2014-06-30",
};
var graph2d = new vis.Graph2d(container, items, options);
</script>
</body>
</html>
  • 效果图
点击查看详情

posted @   DogLeftover  阅读(7)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构
· 字符编码:从基础到乱码解决
· 提示词工程——AI应用必不可少的技术
历史上的今天:
2022-04-22 Spring MVC入门(七):HttpMessageConverter
2022-04-22 Spring MVC入门(六):RESTful
点击右上角即可分享
微信分享提示