Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
vue-admin/client/views/charts/Chartjs.vue
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
156 lines (143 sloc)
4.07 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div> | |
<div class="tile is-ancestor"> | |
<div class="tile is-parent is-4"> | |
<article class="tile is-child box"> | |
<h4 class="title">PIE</h4> | |
<chart :type="'pie'" :data="pieData" :options="options"></chart> | |
</article> | |
</div> | |
<div class="tile is-parent is-4"> | |
<article class="tile is-child box"> | |
<h4 class="title">DOUGHNUT</h4> | |
<chart :type="'doughnut'" :data="pieData" :options="options"></chart> | |
</article> | |
</div> | |
<div class="tile is-parent is-4"> | |
<article class="tile is-child box"> | |
<h4 class="title">POLAR</h4> | |
<chart :type="'polarArea'" :data="pieData" :options="options"></chart> | |
</article> | |
</div> | |
</div> | |
<div class="tile is-ancestor"> | |
<div class="tile is-parent is-6"> | |
<article class="tile is-child box"> | |
<h4 class="title">ANIMATED RADAR</h4> | |
<chart :type="'radar'" :data="waveData" :options="options"></chart> | |
</article> | |
</div> | |
<div class="tile is-parent is-6"> | |
<article class="tile is-child box"> | |
<h4 class="title">ANIMATED BARS</h4> | |
<chart :type="'bar'" :data="waveData" :options="options"></chart> | |
</article> | |
</div> | |
</div> | |
<div class="tile is-ancestor"> | |
<div class="tile is-parent is-4"> | |
<article class="tile is-child box"> | |
<h4 class="title">RADAR</h4> | |
<chart :type="'radar'" :data="seriesData" :options="options_3"></chart> | |
</article> | |
</div> | |
<div class="tile is-parent is-4"> | |
<article class="tile is-child box"> | |
<h4 class="title">LINE</h4> | |
<chart :type="'line'" :data="seriesData" :options="options_3"></chart> | |
</article> | |
</div> | |
<div class="tile is-parent is-4"> | |
<article class="tile is-child box"> | |
<h4 class="title">BARS</h4> | |
<chart :type="'bar'" :data="seriesData" :options="options_3"></chart> | |
</article> | |
</div> | |
</div> | |
</div> | |
</template> | |
<script> | |
import Chart from 'vue-bulma-chartjs' | |
export default { | |
components: { | |
Chart | |
}, | |
data () { | |
return { | |
labels: ['Sleeping', 'Designing', 'Coding', 'Cycling'], | |
data: [20, 40, 5, 35], | |
options: { | |
segmentShowStroke: false | |
}, | |
backgroundColor: [ | |
'#1fc8db', | |
'#fce473', | |
'#42afe3', | |
'#ed6c63', | |
'#97cd76' | |
], | |
labels_2: ['April', 'May', 'June', 'Jule', 'August', 'September', 'October', 'November', 'December'], | |
data_2: [1, 9, 3, 4, 5, 6, 7, 8, 2].map(e => (Math.sin(e) * 25) + 25), | |
labels_3: ['May', 'June', 'Jule', 'August', 'September', 'October', 'November'], | |
data_3: [ | |
[65, 59, 90, 81, 56, 55, 40], | |
[28, 48, 40, 19, 88, 27, 45] | |
], | |
options_3: { | |
tooltips: { | |
mode: 'label' | |
} | |
}, | |
backgroundColor_3: [ | |
'rgba(31, 200, 219, 1)', | |
'rgba(151, 205, 118, 1)' | |
], | |
series: ['Product A', 'Product B'] | |
} | |
}, | |
computed: { | |
pieData () { | |
return { | |
labels: this.labels, | |
datasets: [{ | |
data: this.data, | |
backgroundColor: this.backgroundColor | |
}] | |
} | |
}, | |
waveData () { | |
return { | |
labels: this.labels_2, | |
datasets: [{ | |
label: 'My Radar', | |
data: this.data_2, | |
backgroundColor: this.backgroundColor[0] | |
}] | |
} | |
}, | |
seriesData () { | |
let data = { | |
labels: this.labels_3 | |
} | |
data.datasets = this.series.map((e, i) => { | |
return { | |
data: this.data_3[i], | |
label: this.series[i], | |
borderColor: this.backgroundColor_3[i].replace(/1\)$/, '.5)'), | |
pointBackgroundColor: this.backgroundColor_3[i], | |
backgroundColor: this.backgroundColor_3[i].replace(/1\)$/, '.5)') | |
} | |
}) | |
return data | |
} | |
}, | |
created () { | |
setInterval(() => { | |
// https://vuejs.org/guide/list.html#Mutation-Methods | |
this.data_2.unshift(this.data_2.pop()) | |
}, 377) | |
} | |
} | |
</script> | |
<style scoped> | |
</style> |