Notice
Recent Posts
- Today
- Total
Tags
- 파라미터 전송 방법
- 모놀리식 아키텍쳐
- repaint
- express 파라미터
- 멀티레포 방식
- [Vue warn]: inject() can only be used inside setup() or functional components.
- Next.js 라우팅
- chart.js 레전드 레이블 색상 변경
- Learning React
- git
- 함수형 프로그래밍
- Vue 화면 접근 전 권한 체크
- reflow
- vue-router 네비게이션 가드
- ToDo
- chart.js 툴팁 레이블 색상 변경
- chart.js 레이블 색상 변경
- chart.js 축 font-size
- 모노레포 방식
- performance.now()
빵 입니다.
Chart.js 툴팁 레이블 색상 변경, 레전드 레이블 색상 변경 본문
라인 차트를 사용하는데, 기본적으로 흐린 라인이었다가 포커스가 가면 Point Dot과 라인에 색상이 입혀지는 디자인이 나왔다.
어찌저찌 레퍼런스에서 라인 색상 hover 전, 후를 대응하는 속성값들을 찾아서 적용했는데,
아무리 찾아도 툴팁 레이블 색상과 레전드의 레이블 색상을 변경하는 방법을 모르겠더라.
그래도 똑같이 구현하고 싶고, 또 전혀 없을 것 같은 내용은 아니라 열심히 찾아보았다.
역시나 없을리가 없지~
다른 분들의 시간 절약을 위해 공유해 보겠습니다.
우선, 차트 마우스오버 효과를 주기 위한 설정값들입니다.
import { type ChartData } from 'chart.js'
const lineChartData = reactive<ChartData<'line', number[], unknown>>({
labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
datasets: [
{
label: '위험',
data: [65, 59, 80, 202, 56, 55, 40],
// line
borderColor: '#fed6de',
hoverBorderColor: '#fa5c7c',
borderWidth: 4,
hoverBorderWidth: 4,
// point
pointRadius: 0,
pointHoverRadius: 7,
pointBorderColor: '#fed6de',
pointHoverBorderColor: '#fa5c7c',
backgroundColor: '#fed6de',
hoverBackgroundColor: '#fa5c7c'
},
{
label: '성공',
data: [20, 78, 26, 97, 10, 50, 33],
// line
borderColor: '#d4f6e7',
hoverBorderColor: '#53dca0',
borderWidth: 4,
hoverBorderWidth: 4,
// point
pointRadius: 0,
pointHoverRadius: 7,
pointBorderColor: '#d4f6e7',
pointHoverBorderColor: '#53dca0',
backgroundColor: '#d4f6e7',
hoverBackgroundColor: '#53dca0'
},
{
label: '실패',
data: [40, 11, 22, 49, 1, 47, 55],
// line
borderColor: '#e4e7ea',
hoverBorderColor: '#959faa',
borderWidth: 4,
hoverBorderWidth: 4,
// point
pointRadius: 0,
pointHoverRadius: 7,
pointBorderColor: '#e4e7ea',
pointHoverBorderColor: '#959faa',
backgroundColor: '#e4e7ea',
hoverBackgroundColor: '#959faa'
}
]
})
아래 내용은 옵션값인데요.
import { Line } from 'vue-chartjs'
import { Chart, type ChartData } from 'chart.js'
const options = reactive({
type: 'chart',
responsive: true,
maintainAspectRatio: false,
interaction: {
intersect: false,
mode: 'index'
},
hover: {
mode: 'dataset' // 마우스 오버 효과를 위해 꼭 필요
},
plugins: {
legend: {
display: true,
position: 'bottom',
labels: {
padding: 20,
usePointStyle: true,
pointStyle: 'circle',
boxWidth: 10,
boxHeight: 10,
font: {
size: 16
},
// 레전드 내 레이블 색상 변경
generateLabels: (chart) => {
const labels = Chart.defaults.plugins.legend.labels.generateLabels(chart)
for (const key in labels) {
const target = Number(key)
if (target === 0) {
labels[key].text = '위험'
labels[key].fillStyle = '#fa5c7c'
labels[key].strokeStyle = '#fa5c7c'
} else if (target === 1) {
labels[key].text = '성공'
labels[key].fillStyle = '#53dca0'
labels[key].strokeStyle = '#53dca0'
} else if (target === 2) {
labels[key].text = '실패'
labels[key].fillStyle = '#959faa'
labels[key].strokeStyle = '#959faa'
}
}
return labels
}
}
},
tooltip: {
borderWidth: 1,
borderColor: '#eeeeee',
backgroundColor: '#ffffff',
padding: 10,
bodySpacing: 10,
titleColor: '#595959',
usePointStyle: true,
pointStyle: 'circle',
boxPadding: 5,
boxWidth: 10,
boxHeight: 10,
bodyColor: '#595959',
font: {
size: 12
},
caretSize: 0,
// 툴팁 내 레이블 색상 변경
callbacks: {
labelColor: (tooltipItem) => {
if (tooltipItem.datasetIndex === 0) {
return {
borderColor: '#fa5c7c',
backgroundColor: '#fa5c7c'
}
}
if (tooltipItem.datasetIndex === 1) {
return {
borderColor: '#53dca0',
backgroundColor: '#53dca0'
}
}
if (tooltipItem.datasetIndex === 2) {
return {
borderColor: '#959faa',
backgroundColor: '#959faa'
}
}
}
}
}
},
scales: {
x: {
ticks: {
font: {
size: 16
}
}
},
y: {
ticks: {
font: {
size: 16
}
}
}
}
})
주목해야 할 내용 세가지는
1. 마우스 오버 효과를 주려면 후버 모드를 'dataset'으로 선언해 주어야 합니다.
options.hover.mode
hover: {
mode: 'dataset' // 마우스 오버 효과를 위해 꼭 필요
},
2. 레전드 옵션의 generateLabels 함수를 이용해 레전드 내의 레이블 값 속성을 재선언해 주어야 합니다.
options.plugins.legend.labels
generateLabels: (chart) => {
const labels = Chart.defaults.plugins.legend.labels.generateLabels(chart)
for (const key in labels) {
const target = Number(key)
if (target === 0) {
labels[key].text = '위험'
labels[key].fillStyle = '#fa5c7c'
labels[key].strokeStyle = '#fa5c7c'
} else if (target === 1) {
labels[key].text = '성공'
labels[key].fillStyle = '#53dca0'
labels[key].strokeStyle = '#53dca0'
} else if (target === 2) {
labels[key].text = '실패'
labels[key].fillStyle = '#959faa'
labels[key].strokeStyle = '#959faa'
}
}
return labels
}
3. 툴팁 옵션의 callbacks로 제공하는 labelColor 함수를 이용해 툴팁 레이블 속성을 재선언 해주어야 합니다.
options.plugins.tooltip.callbacks
callbacks: {
labelColor: (tooltipItem) => {
if (tooltipItem.datasetIndex === 0) {
return {
borderColor: '#fa5c7c',
backgroundColor: '#fa5c7c'
}
}
if (tooltipItem.datasetIndex === 1) {
return {
borderColor: '#53dca0',
backgroundColor: '#53dca0'
}
}
if (tooltipItem.datasetIndex === 2) {
return {
borderColor: '#959faa',
backgroundColor: '#959faa'
}
}
}
}
그리고 결과 화면!
'프론트엔드 > Vue' 카테고리의 다른 글
Chart.js 축 font-size 조절 (0) | 2024.07.30 |
---|---|
화면별 권한 설정 (0) | 2024.03.04 |
[Vue warn]: inject() can only be used inside setup() or functional components. (0) | 2024.02.26 |
Vue3와 Vuetify3 (0) | 2024.01.29 |
vue-router 변경 감지 (동적 라우팅의 문제점) (0) | 2022.12.12 |
Comments