簡體   English   中英

chart.js 版本 3 - 如何制作重疊條形圖?

[英]chart.js version 3 - How to make an overlapping bar chart?

是否可以使用 Chart.js 版本 3 創建這樣的圖表(下圖)?

在此處輸入圖像描述

任何建議將不勝感激。

您可以將 x 軸與內部條的較小條百分比堆疊在一起:

 const options = { type: 'bar', data: { labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"], datasets: [{ label: '# of Points', data: [7, 11, 5, 8, 3, 7], backgroundColor: 'orange', barPercentage: 0.6 }, { label: '# of Votes', data: [12, 19, 8, 10, 5, 13], backgroundColor: 'pink' } ] }, options: { scales: { x: { stacked: true } } } } const ctx = document.getElementById('chartJSContainer').getContext('2d'); new Chart(ctx, options);
 <body> <canvas id="chartJSContainer" width="600" height="400"></canvas> <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.6.2/chart.js"></script> </body>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM