首页 > 其他分享 >vis.js标签条形图

vis.js标签条形图

时间:2024-04-22 17:22:05浏览次数:24  
标签:10 06 js vis 2014 var group label 条形图

  • 代码案例
<!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;
    }
    .red {
        fill: red;
    }
    #visualization {
        width: 600px;
    }
  </style>
</head>
<body>    
    <div id="visualization"></div>
    
<script type="text/javascript">
    var container = document.getElementById("visualization");
    var label1 = {
    content: "Label 1 (with offset)",
    xOffset: 20,
    yOffset: 20,
    };

    var label2 = {
    content: "Label 2",
    className: "red",
    };

    var label3 = {
    content: "Label 3",
    };
    var items = [
    { group: 1, x: "2014-06-11", y: 10, label: label1 },
    { group: 1, x: "2014-06-12", y: 25, label: label2 },
    { group: 1, x: "2014-06-13", y: 30 },
    { group: 1, x: "2014-06-14", y: 10 },
    { group: 1, x: "2014-06-15", y: 15, label: label3 },
    { group: 1, x: "2014-06-16", y: 30 },

    { group: 2, x: "2014-06-17", y: 10, label: label1 },
    { group: 2, x: "2014-06-18", y: 25, label: label2 },
    { group: 2, x: "2014-06-19", y: 30 },
    { group: 2, x: "2014-06-20", y: 10 },
    { group: 2, x: "2014-06-21", y: 15, label: label3 },
    { group: 2, x: "2014-06-22", y: 30 },

    { group: 3, x: "2014-06-23", y: 10, label: label1 },
    { group: 3, x: "2014-06-24", y: 25, label: label2 },
    { group: 3, x: "2014-06-25", y: 30 },
    { group: 3, x: "2014-06-26", y: 10 },
    { group: 3, x: "2014-06-27", y: 15, label: label3 },
    { group: 3, x: "2014-06-28", y: 40 },
    ];

    var groups = new vis.DataSet();
    groups.add({
    id: 1,
    content:
        "Only draw items with labels. Make the data point bigger and a square.",
    options: {
        drawPoints: function group1Renderer(item, group, grap2d) {
        if (item.label == null) {
            return false;
        }
        return {
            style: "square",
            size: 15,
        };
        },
    },
    });

    groups.add({
    id: 2,
    content:
        "Draw according to the Graph2d callback, but make it every datapoint square one.",
    options: {
        drawPoints: {
        style: "square",
        },
    },
    });

    groups.add({
    id: 3,
    content:
        "I want to render datapoints with no labels. Screw the graph2d options. Except the style/size should be according to the graph2d option.",
    options: {
        drawPoints: function (item, group, grap2d) {
        return item.label == null;
        },
    },
    });

    var dataset = new vis.DataSet(items);
    var options = {
    start: "2014-06-10",
    end: "2014-06-29",
    style: "bar",
    drawPoints: {
        onRender: function (item, group, grap2d) {
        return item.label != null;
        },
        style: "circle",
    },
    };

    var graph2d = new vis.Graph2d(container, dataset, groups, options);

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

标签:10,06,js,vis,2014,var,group,label,条形图
From: https://www.cnblogs.com/dogleftover/p/18151027

相关文章

  • 原生JS 绑定右键菜单 并隐藏浏览器右键菜单
    原生JS绑定右键菜单并隐藏浏览器右键菜单//获取元素vardom=document.getElementById("box");dom.addEventListener('contextmenu',function(e){if(e.button===2){notesTitle=e.srcElement.innerText//获取点击的元素e.preventDefault();//......
  • Node.js数电票、全电票查验接口示例、发票查验、票据OCR API
    何为数电票:数电票全称为全面数字化的电子发票,是一种全新的发票形式,与传统的纸质发票具有同等的法律效力,以数字形式存在,不依赖于纸质介质,而数电票的推行旨在提高发票管理效率,降低企业成本,推动税收征管的现代化进程。发票查验的自动化和智能化管理,可以显著减少人工核对发票......
  • Node.js身份核验接口、身份证二、三要素实名认证接口
    随着互联网的高速发展,人们可以发表言论的渠道越来越多。网络平台不断汲取各地、各人、各时发表的各种信息。人们喜欢将信息发布到微博、知乎、天涯、豆瓣等等网络平台,逐步的,网络信息进入大爆炸时代。这些大量涌现的信息中难免掺杂着一些不良信息,比如:虚假信息、污言秽语、违法......
  • vue.js 3 上传文件:el-upload 组件
    "@element-plus/icons-vue":"^2.3.1","axios":"^1.6.8","element-plus":"^2.6.2","pinia":"^2.1.7","pinia-plugin-persistedstate":"^3.2.1","vue":&......
  • vis.js分组并排条形图
    代码案例<!doctypehtml><html><head><title>Timeline</title><scripttype="text/javascript"src="https://unpkg.com/vis-timeline@latest/standalone/umd/vis-timeline-graph2d.min.js"></script>......
  • vis.js并排条形图
    代码案例<!doctypehtml><html><head><title>Timeline</title><scripttype="text/javascript"src="https://unpkg.com/vis-timeline@latest/standalone/umd/vis-timeline-graph2d.min.js"></script>......
  • vis.js条形图(2)
    代码案例<!doctypehtml><html><head><title>Timeline</title><scripttype="text/javascript"src="https://unpkg.com/vis-timeline@latest/standalone/umd/vis-timeline-graph2d.min.js"></script>......
  • Visual Studio用指定编码打开文件
    简介打开祖传代码时,VisualStudio2022没有正确选择编码方式,导致文件乱码,无法编译。错误重现上图点击“确定”,打开后看到如下乱码:正确的打开方式下图点右键,选“打开方式”:下土中选“带编码功能的C#编辑器”:下图默认选中了“自动检测”经过一番尝试,上图中的“编......
  • vis.js自定义轴
    代码案例<!doctypehtml><html><head><title>Timeline</title><scripttype="text/javascript"src="https://unpkg.com/vis-timeline@latest/standalone/umd/vis-timeline-graph2d.min.js"></script>......
  • vis.js条形图
    代码案例<!doctypehtml><html><head><title>Timeline</title><scripttype="text/javascript"src="https://unpkg.com/vis-timeline@latest/standalone/umd/vis-timeline-graph2d.min.js"></script>......