vue-chartjs에서 자동 색상 할당
이게 뭐야?
Qiita의 마이 페이지의 그래프 같은 것을 만들고 싶어서 vue-chartjs로 자동 색 할당의 방법을 찾고 있으면
google-palette
에 도착했기 때문에 망비록google-palette
설치
프로젝트 아래에서 실행
$ npm i google-palette
사용법
그래프 본체
Chart.vue
<script>
import { Doughnut } from 'vue-chartjs'
import * as palette from 'google-palette'
export default {
extends: Doughnut,
data() {
return {
languages: ['Vue.js', 'C', 'C++', 'Python'],
chartStatus: [40, 30, 20, 10]
}
},
mounted: function() {
this.renderChart(
{
labels: this.languages,
datasets: [
{
backgroundColor: palette('mpn65', this.chartStatus.length).map(
function(hex) {
return '#' + hex
}
),
data: this.chartStatus
}
]
},
{ responsive: true, maintainAspectRatio: false }
)
}
}
</script>
페이지
index.vue
<template>
<div>
<chart-graph />
</div>
</template>
<script>
import Vue from 'vue'
import Chart from '~/components/Chart'
export default {
components: {
Chart
}
}
Vue.component('chart-graph', Chart)
</script>
브라우저
나왔다.
Reference
이 문제에 관하여(vue-chartjs에서 자동 색상 할당), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/muramasawani/items/e61d889ebb53e0974e5f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)