首页 > 其他分享 >vis.js两轴折线图

vis.js两轴折线图

时间:2024-04-22 17:33:30浏览次数:24  
标签:06 var custom vis groups 2014 折线图 group 两轴

  • 代码案例
<!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;
    }

    .custom-style1 {
        fill: #f2ea00;
        fill-opacity: 0;
        stroke-width: 2px;
        stroke: #b3ab00;
    }

    .custom-style2 {
        fill: #00a0f2;
        stroke-width: 2px;
        stroke: #050092;
    }

    .custom-style3 {
        fill: #00f201;
        fill-opacity: 0;
        stroke-width: 2px;
        stroke: #029200;
    }
    path.custom-style3.vis-fill {
        fill-opacity: 0.5 !important;
        stroke: none;
    }

    #visualization {
        width: 600px;
    }
  </style>
</head>
<body>    
    <div id="visualization"></div>
    
<script type="text/javascript">
    // create a dataSet with groups
    var names = ["SquareShaded", "Bargraph", "Blank", "CircleShaded"];
    var groups = new vis.DataSet();
    groups.add({
    id: 0,
    content: names[0],
    className: "custom-style1",
    options: {
        drawPoints: {
        style: "square", // square, circle
        },
        shaded: {
        orientation: "bottom", // top, bottom
        },
    },
    });

    groups.add({
    id: 1,
    content: names[1],
    className: "custom-style2",
    options: {
        style: "bar",
        drawPoints: { style: "circle", size: 10 },
    },
    });

    groups.add({
    id: 2,
    content: names[2],
    options: {
        yAxisOrientation: "right", // right, left
        drawPoints: false,
    },
    });

    groups.add({
    id: 3,
    content: names[3],
    className: "custom-style3",
    options: {
        yAxisOrientation: "right", // right, left
        drawPoints: {
        style: "circle", // square, circle
        },
        shaded: {
        orientation: "top", // top, bottom
        },
    },
    });

    var container = document.getElementById("visualization");
    var items = [
    { x: "2014-06-12", y: 0, 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: 1 },
    { x: "2014-06-16", y: 30, group: 1 },
    { x: "2014-06-17", y: 10, group: 1 },
    { x: "2014-06-18", y: 15, group: 1 },
    { x: "2014-06-19", y: 52, group: 1 },
    { x: "2014-06-20", y: 10, group: 1 },
    { x: "2014-06-21", y: 20, group: 2 },
    { x: "2014-06-22", y: 600, group: 2 },
    { x: "2014-06-23", y: 100, group: 2 },
    { x: "2014-06-24", y: 250, group: 2 },
    { x: "2014-06-25", y: 300, group: 2 },
    { x: "2014-06-26", y: 200, group: 3 },
    { x: "2014-06-27", y: 600, group: 3 },
    { x: "2014-06-28", y: 1000, group: 3 },
    { x: "2014-06-29", y: 250, group: 3 },
    { x: "2014-06-30", y: 300, group: 3 },
    ];

    var dataset = new vis.DataSet(items);
    var options = {
    dataAxis: { showMinorLabels: false },
    legend: { left: { position: "bottom-left" } },
    start: "2014-06-09",
    end: "2014-07-03",
    };
    var graph2d = new vis.Graph2d(container, dataset, groups, options);

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

标签:06,var,custom,vis,groups,2014,折线图,group,两轴
From: https://www.cnblogs.com/dogleftover/p/18151057

相关文章

  • 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并排条形图
    代码案例<!doctypehtml><html><head><title>Timeline</title><scripttype="text/javascript"src="https://unpkg.com/vis-timeline@latest/standalone/umd/vis-timeline-graph2d.min.js"></script>......
  • SQL查折线图数据
    在做后台管理系统的时候,有很大概率是要与各种图表数据打交道,那么如何通过SQL查出基本图表的数据呢,以折线图为例, X轴为日期,Y轴为统计数据,那么我们通过SQL如何查询出连续日期下的统计数据呢,假设我们数据库有一张表为A,A表有createdAt,count字段,count表示数量,createdAt表示生成......
  • 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>......
  • 用 Python(PyVISA) 实现仪器自动化
    本文介绍一个远程仪器控制的例子,包含一些Python脚本实现自动在示波器上进行简单的测量。Python介绍Python是免费和开源的,它为核心开发人员提供了责任、庞大的支持基础以及Python用户检查和改进其代码库的能力。Python有很多包用来扩展了Python的基本功能。Python的包可......
  • Visual Studio 常用快捷键
    常用General按Press功能FunctionCtrl+Shift+P,F1显示命令面板ShowCommandPaletteCtrl+P快速打开QuickOpenCtrl+Shift+N新窗口/实例Newwindow/instanceCtrl+Shift+W关闭窗口/实例Closewindow/instanceCtrl+,用户设置UserSett......