반응형
Chart.js의 툴팁을 커스터마이즈합니다.
최신 버전을 사용하고 있습니다.vue
그리고.vue-chart.js
.
점을 맴돌 때 표시되는 툴팁을 커스터마이즈하고 싶습니다.
쟁점.
툴팁은 기본에서 변경되지 않습니다.
질문.
툴팁 커스터마이즈 방법최종적으로 툴팁의 링크를 클릭하여 vue 컴포넌트에 포함된 데이터에서 가져온 세부 정보를 표시하는 대화상자를 트리거할 수 있습니다.
Vue.component('line-chart', {
extends: VueChartJs.Line,
mounted () {
this.renderChart({
labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
datasets: [
{
label: 'Data One',
backgroundColor: '#f87979',
data: [40, 39, 10, 40, 39, 80, 40]
}
]
}, {
tooltips: {
custom: function(tooltipModel) {
// Tooltip Element
var tooltipEl = document.getElementById('chartjs-tooltip');
// Create element on first render
if (!tooltipEl) {
tooltipEl = document.createElement('div');
tooltipEl.id = 'chartjs-tooltip';
tooltipEl.innerHTML = "<table></table>"
document.body.appendChild(tooltipEl);
}
// Hide if no tooltip
if (tooltipModel.opacity === 0) {
tooltipEl.style.opacity = 0;
return;
}
// Set caret Position
tooltipEl.classList.remove('above', 'below', 'no-transform');
if (tooltipModel.yAlign) {
tooltipEl.classList.add(tooltipModel.yAlign);
} else {
tooltipEl.classList.add('no-transform');
}
function getBody(bodyItem) {
return bodyItem.lines;
}
// Set Text
if (tooltipModel.body) {
var titleLines = tooltipModel.title || [];
var bodyLines = tooltipModel.body.map(getBody);
var innerHtml = '<thead>';
titleLines.forEach(function(title) {
innerHtml += '<tr><th>' + title + '</th></tr>';
});
innerHtml += '</thead><tbody>';
bodyLines.forEach(function(body, i) {
var colors = tooltipModel.labelColors[i];
var style = 'background:' + colors.backgroundColor;
style += '; border-color:' + colors.borderColor;
style += '; border-width: 2px';
var span = '<span class="chartjs-tooltip-key" style="' + style + '"></span>';
innerHtml += '<tr><td>' + span + body + '</td></tr>';
});
innerHtml += '</tbody>';
var tableRoot = tooltipEl.querySelector('table');
tableRoot.innerHTML = innerHtml;
}
// `this` will be the overall tooltip
var position = this._chart.canvas.getBoundingClientRect();
// Display, position, and set styles for font
tooltipEl.style.opacity = 1;
tooltipEl.style.left = position.left + tooltipModel.caretX + 'px';
tooltipEl.style.top = position.top + tooltipModel.caretY + 'px';
tooltipEl.style.fontFamily = tooltipModel._fontFamily;
tooltipEl.style.fontSize = tooltipModel.fontSize;
tooltipEl.style.fontStyle = tooltipModel._fontStyle;
tooltipEl.style.padding = tooltipModel.yPadding + 'px ' + tooltipModel.xPadding + 'px';
}
},
responsive: true,
maintainAspectRatio: false
})
}
})
var vm = new Vue({
el: '.app',
data: {
message: 'Hello World'
}
})
https://codepen.io/anon/pen/ooyMMG
html=에서 삭제
tooltips: { 이 한 줄 추가 = enabled:false, custom: function(tooltipModel)
언급URL : https://stackoverflow.com/questions/47466742/customize-the-tooltip-of-chart-js
반응형
'programing' 카테고리의 다른 글
vuejs2: vuex 스토어를 vue-router 컴포넌트에 전달하는 방법 (0) | 2022.07.31 |
---|---|
테스트 없이 Maven 패키지/설치(스킵 테스트) (0) | 2022.07.31 |
vue.filename: 개체를 사용하여 상태를 업데이트하려면 어떻게 해야 합니까? (0) | 2022.07.31 |
Vuej로 인해 콘텐츠에 새 행을 추가할 수 없음 (0) | 2022.07.31 |
"static" 기능과 "static inline" 기능의 차이점은 무엇입니까? (0) | 2022.07.31 |