Chart.js에서 스트립 그래프(100% 스택 막대 그래프) 그리기
다행히도 Chart.js는 plugin을 쉽게 작성할 수 있기 때문에 만들었습니다. 다음과 같습니다.
설정
여기에 작성되었으므로 먼저 플러그인을 Chart.js에 등록하십시오.
사용법
chart options에 { stacked: '100%' }
를 전달하면됩니다.
new Chart(document.getElementById('stage'), {
type: 'horizontalBar',
data: {
labels: ["Foo", "Bar"],
datasets: [
{ label: "bad", data: [5, 25], backgroundColor: "rgba(244, 143, 177, 0.6)" },
{ label: "better", data: [15, 10], backgroundColor: "rgba(255, 235, 59, 0.6)" },
{ label: "good", data: [10, 8], backgroundColor: "rgba(100, 181, 246, 0.6)" }
]
},
options: { stacked: "100%" }
});
주의점 등
chart options에
{ stacked: '100%' }
를 전달하면됩니다.new Chart(document.getElementById('stage'), {
type: 'horizontalBar',
data: {
labels: ["Foo", "Bar"],
datasets: [
{ label: "bad", data: [5, 25], backgroundColor: "rgba(244, 143, 177, 0.6)" },
{ label: "better", data: [15, 10], backgroundColor: "rgba(255, 235, 59, 0.6)" },
{ label: "good", data: [10, 8], backgroundColor: "rgba(100, 181, 246, 0.6)" }
]
},
options: { stacked: "100%" }
});
주의점 등
Reference
이 문제에 관하여(Chart.js에서 스트립 그래프(100% 스택 막대 그래프) 그리기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/takeyuichi/items/a720a4b65dc42790ac05텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)