代码之家  ›  专栏  ›  技术社区  ›  Nick

自定义jQuery堆栈图

  •  0
  • Nick  · 技术社区  · 7 年前

    我试图将用户与工作绩效绘制为条形图。我可以使用canvasjs将其实现为堆栈图。com组件, enter image description here

    但我必须根据时间划分每个部分。所以我必须实现这个图表, enter image description here

    有没有办法自定义图表 或者是否有任何jQuery库可用于此

    如果这是一个重复的问题,请原谅我,我不知道如何在谷歌搜索这个。很抱歉我的语言不好。

    1 回复  |  直到 7 年前
        1
  •  0
  •   WhiteHat    7 年前

    使用google图表,您可以使用多个系列(数据表列),
    创建图表。

    使用 series 选项设置每个的颜色,
    并隐藏重复的图例条目。

    请参阅以下工作段。。。

    google.charts.load('current', {
      packages: ['corechart']
    }).then(function () {
      var data = google.visualization.arrayToDataTable([
        ['Country', 'Anthracite', 'Lignite', 'Anthracite', 'Lignite', 'Anthracite', 'Lignite'],
        ['USA', 50000, 20000, 50000, 20000, 50000, 20000],
        ['Russia', 40000, 25000, 30000, 15000, 50000, 23000],
        ['China', 12000, 26000, 51000, 24000, 51000, 22000]
      ]);
    
      var options = {
        isStacked: true,
        legend: {
          position: 'bottom'
        },
        series: {
          0: {  // Anthracite 1
            color: 'blue'
          },
          1: {  // Lignite 1
            color: 'red'
          },
          2: {  // Anthracite 2
            color: 'blue',
            visibleInLegend: false
          },
          3: {  // Lignite 2
            color: 'red',
            visibleInLegend: false
          },
          4: {  // Anthracite 3
            color: 'blue',
            visibleInLegend: false
          },
          5: {  // Lignite 3
            color: 'red',
            visibleInLegend: false
          }
        }
      };
    
      var chart = new google.visualization.ColumnChart(document.getElementById('chart'));
      chart.draw(data, options);
    });
    <script src="https://www.gstatic.com/charts/loader.js"></script>
    <div id="chart"></div>