如何使用 Chart.JS 创建堆积条形图/水平图?

B. *_*non 4 html css jquery charts chart.js2

我可以使用 Chart.JS 创建“传统”条形图,甚至可以创建如下所示的堆叠条形图:

在此输入图像描述

但我需要创建一个带有水平条(而不是垂直条)的条形图,并在底部显示百分比,如下所示的示例是使用 xlsxwriter 创建的:

在此输入图像描述

如何操纵 Chart.JS 来执行此命令的魔法?

更新

我将答案标记为正确,因为基于 jsfiddle,它显然有效。但我无法将数据堆叠起来。这是我所看到的:

在此输入图像描述

这是我的代码:

var ctxBarChart = $("#priceComplianceBarChart").get(0).getContext("2d");
var barChartData = {
    labels: ["Bix Produce", "Capitol City", "Charlies Portland", "Costa Fruit and Produce", "Get Fresh Sales", "Loffredo East", "Loffredo West", "Paragon", "Piazza Produce"],
    datasets: [
        {
            label: "Price Compliant",
            backgroundColor: "rgba(34,139,34,0.5)",
            hoverBackgroundColor: "rgba(34,139,34,1)",
            data: [17724, 5565, 3806, 5925, 5721, 6635, 14080, 9027, 25553]
        },
        {
            label: "Non-Compliant",
            backgroundColor: "rgba(255, 0, 0, 0.5)",
            hoverBackgroundColor: "rgba(255, 0, 0, 1)",
            data: [170, 10, 180, 140, 30, 10, 50, 100, 10]
        }
    ]
}

var optionsBar = {
    options: {
        scales: {
            xAxes: [{
                stacked: true
            }],
            yAxes: [{
                stacked: true
            }]
        }
    }
};

var priceBarChart = new Chart(ctxBarChart, {
    type: 'horizontalBar',
    data: barChartData,
    options: optionsBar
});
Run Code Online (Sandbox Code Playgroud)

我究竟做错了什么?

注意:我也尝试过这个:

var optionsBar = {
    stacked: true
};
Run Code Online (Sandbox Code Playgroud)

...还有这个(系着腰带背带):

var optionsBar = {
    stacked: true,
    options: {
        scales: {
            xAxes: [{
                stacked: true
            }],
            yAxes: [{
                stacked: true
            }]
        }
    }
};
Run Code Online (Sandbox Code Playgroud)

更新3

这是可行的(我必须剥离其中一个选项级别):

var optionsBar = {
    scales: {
        xAxes: [{
            stacked: true
        }],
        yAxes: [{
            stacked: true
        }]
    }
};
Run Code Online (Sandbox Code Playgroud)

Dek*_*kel 5

  1. 如果您想创建水平条而不是常规字符,可以使用type: 'horizontalBar'.
  2. 要将图表创建为“堆积条形图”,您需要设置


xAxes: [{
    stacked: true
}],
yAxes: [{
    stacked: true
}]
Run Code Online (Sandbox Code Playgroud)

您可以使用此代码:

var config = {
  type: 'horizontalBar',
  data: {
    labels: ["A", "B", "C", "D", "E"],
    datasets: [{
      label: "Dataset 1",
      backgroundColor: "rgba(154,178,96,0.5)",
      hoverBackgroundColor: "rgba(154,178,96,1)",
      data: [10, 15, 5, 81, 55],
    }, {
      label: "Dataset 2",
      backgroundColor: "rgba(197,213,167,0.5)",
      hoverBackgroundColor: "rgba(197,213,167,1)",
      data: [90, 85, 95, 19, 45]
    }]
  },
  options: {
    scales: {
      xAxes: [{
        stacked: true
      }],
      yAxes: [{
        stacked: true
      }]
    }
  }
};

var ctx = document.getElementById("myChart").getContext("2d");
new Chart(ctx, config);
Run Code Online (Sandbox Code Playgroud)

这是一个工作示例: https:
//jsfiddle.net/0xLxum4s/

(由于某种原因,它在代码片段中不起作用,所以我使用了 jsfiddle)。