41 lines
1.1 KiB
Vue
41 lines
1.1 KiB
Vue
<script>
|
|
import { Bar } from '@coreui/vue/src/extends/BaseCharts'
|
|
import { CustomTooltips } from '@coreui/coreui-plugin-chartjs-custom-tooltips'
|
|
|
|
export default {
|
|
name: 'BarExample',
|
|
extends: Bar,
|
|
mounted () {
|
|
// Overwriting base render method with actual data.
|
|
this.renderChart(
|
|
{
|
|
labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
|
|
datasets: [
|
|
{
|
|
label: 'GitHub Commits',
|
|
backgroundColor: '#f87979',
|
|
data: [40, 20, 12, 39, 10, 40, 39, 80, 40, 20, 12, 11]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
responsive: true,
|
|
maintainAspectRatio: true,
|
|
tooltips: {
|
|
enabled: false,
|
|
custom: CustomTooltips,
|
|
intersect: true,
|
|
mode: 'index',
|
|
position: 'nearest',
|
|
callbacks: {
|
|
labelColor: function (tooltipItem, chart) {
|
|
return { backgroundColor: chart.data.datasets[tooltipItem.datasetIndex].backgroundColor }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
)
|
|
}
|
|
}
|
|
</script>
|