chartjs 를 이용해서 차트를 표현하는데 아래 이미지와 같이
tooltip에 value와 percentage를 둘 다 표시하고자 한다.
options : {
tooltips : {
callbacks : {
label : function(tooltipItem, data){
var dataset = data.datasets[tooltipItem.datasetIndex];
var total = dataset.data.reduce(function(previousValue, currentValue, currentIndex, array){
return previousValue + currentValue;
});
var currentValue = dataset.data[tooltipItem.index];
var percentage = Math.floor(((currentValue/total) * 100)+0.5);
return data['labels'][tooltipItem['index']] + " : " + currentValue + " ("+ percentage+"%)" ;
},
}
},//tooltips
}
반응형
'프로그래밍 언어 > Javascript' 카테고리의 다른 글
ajax xml 전체내용 출력 (0) | 2021.04.07 |
---|---|
dataTable 한국어 함수 (0) | 2021.02.15 |
window.onload 와 $(document).ready 의 차이 (0) | 2021.02.15 |
script5007 정의되지 않음 또는 null 참조인 속성을 가져올 수 없습니다. (0) | 2020.07.07 |
[chart.js] 레이블 글자가 길 때 (띄어쓰기, 글자 길이) (0) | 2020.07.01 |