first commit
This commit is contained in:
65
resources/js/views/charts/chartjs/ChartJsBarChart.vue
Normal file
65
resources/js/views/charts/chartjs/ChartJsBarChart.vue
Normal file
@@ -0,0 +1,65 @@
|
||||
<script setup>
|
||||
import { useTheme } from 'vuetify'
|
||||
import BarChart from '@/@core/libs/chartjs/components/BarChart'
|
||||
import { getLatestBarChartConfig } from '@core/libs/chartjs/chartjsConfig'
|
||||
|
||||
const props = defineProps({
|
||||
colors: {
|
||||
type: null,
|
||||
required: true,
|
||||
},
|
||||
})
|
||||
|
||||
const vuetifyTheme = useTheme()
|
||||
const chartOptions = computed(() => getLatestBarChartConfig(vuetifyTheme.current.value))
|
||||
|
||||
const data = {
|
||||
labels: [
|
||||
'7/12',
|
||||
'8/12',
|
||||
'9/12',
|
||||
'10/12',
|
||||
'11/12',
|
||||
'12/12',
|
||||
'13/12',
|
||||
'14/12',
|
||||
'15/12',
|
||||
'16/12',
|
||||
'17/12',
|
||||
'18/12',
|
||||
'19/12',
|
||||
],
|
||||
datasets: [{
|
||||
maxBarThickness: 15,
|
||||
backgroundColor: props.colors.barChartYellow,
|
||||
borderColor: 'transparent',
|
||||
borderRadius: {
|
||||
topRight: 15,
|
||||
topLeft: 15,
|
||||
},
|
||||
data: [
|
||||
275,
|
||||
90,
|
||||
190,
|
||||
205,
|
||||
125,
|
||||
85,
|
||||
55,
|
||||
87,
|
||||
127,
|
||||
150,
|
||||
230,
|
||||
280,
|
||||
190,
|
||||
],
|
||||
}],
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<BarChart
|
||||
:height="400"
|
||||
:chart-data="data"
|
||||
:chart-options="chartOptions"
|
||||
/>
|
||||
</template>
|
Reference in New Issue
Block a user