如何设置水平条形图的类别高度?

问题描述 投票:0回答:1

我有一个水平条形图。如何使类别的高度变大?

horizontal bar chart

chart.js
1个回答
0
投票

你可以为 barPercentagecategoryPercentage 里面每 dataset 的堆叠水平条形图。数组应该包含每一个 data 值,除了最后一个,其他都是一样的。

categoryPercentage: [0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1]

请看下面的代码示例。

new Chart(document.getElementById('myChart'), {
  type: 'horizontalBar',
  data: {
    labels: ['A', 'B', 'C', 'D', 'E', 'F', 'Others'],
    datasets: [{
      label: 'Money in',
      data: [1, 1, 1, 1, 1, 1, 2],
      backgroundColor: 'rgb(26,121,191)',
      categoryPercentage: [0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1]
    },
    {
      label: 'Money in',
      data: [1, 1, 1, 1, 1, 1, 0],      
      backgroundColor: 'rgb(0,51,160)',
      categoryPercentage: [0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1]
    }]
  },
  options: {
    scales: {
      yAxes: [{
        stacked: true   
      }],
      xAxes: [{
        stacked: true,
        ticks: {          
          beginAtZero: true,
          stepSize: 1
        }
      }]
    },
    legend: {
      display: false
    }
  }
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.3/Chart.bundle.js"></script> 
<canvas id="myChart" height="100"></canvas>
© www.soinside.com 2019 - 2024. All rights reserved.