展开
拓展 关闭
订阅号推广码
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>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.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">
    // create a dataSet with groups
    var names = ["top", "bottom", "zero", "none", "group", "none"];
    var groups = new vis.DataSet();
    groups.add({
    id: 0,
    content: names[0],
    options: {
        shaded: {
        orientation: "top",
        },
    },
    });

    groups.add({
    id: 1,
    content: names[1],
    options: {
        shaded: {
        orientation: "bottom",
        },
    },
    });

    groups.add({
    id: 2,
    content: names[2],
    options: {
        shaded: {
        orientation: "zero",
        },
    },
    });

    groups.add({
    id: 3,
    options: {
        excludeFromLegend: true,
    },
    });

    groups.add({
    id: 4,
    content: names[4],
    options: {
        shaded: {
        orientation: "group",
        groupId: "3",
        },
    },
    });

    groups.add({
    id: 5,
    content: names[5],
    });

    var container = document.getElementById("visualization");
    var items = [
    { x: "2014-06-11", y: 0, group: 0 },
    { x: "2014-06-12", y: 15, group: 0 },
    { x: "2014-06-13", y: -15, group: 0 },
    { x: "2014-06-14", y: 0, group: 0 },
    { x: "2014-06-15", y: 0, group: 1 },
    { x: "2014-06-16", y: 15, group: 1 },
    { x: "2014-06-17", y: -15, group: 1 },
    { x: "2014-06-18", y: 0, group: 1 },
    { x: "2014-06-19", y: 0, group: 2 },
    { x: "2014-06-20", y: 15, group: 2 },
    { x: "2014-06-21", y: -15, group: 2 },
    { x: "2014-06-22", y: 0, group: 2 },
    { x: "2014-06-23", y: -2, group: 3 },
    { x: "2014-06-24", y: 13, group: 3 },
    { x: "2014-06-25", y: -17, group: 3 },
    { x: "2014-06-26", y: -2, group: 3 },
    { x: "2014-06-23", y: 2, group: 4 },
    { x: "2014-06-24", y: 17, group: 4 },
    { x: "2014-06-25", y: -13, group: 4 },
    { x: "2014-06-26", y: 2, group: 4 },
    { x: "2014-06-27", y: 0, group: 5 },
    { x: "2014-06-28", y: 15, group: 5 },
    { x: "2014-06-29", y: -15, group: 5 },
    { x: "2014-06-30", y: 0, group: 5 },
    ];

    var dataset = new vis.DataSet(items);
    var options = {
    legend: true,
    start: "2014-06-07",
    end: "2014-07-03",
    };
    var graph2d = new vis.Graph2d(container, dataset, groups, options);

</script>
</body>
</html>
  • 效果图
点击查看详情

posted @ 2024-04-23 09:07  DogLeftover  阅读(16)  评论(0编辑  收藏  举报