ChartJsBarChart.vue 1.05 KB
<script setup lang="ts">
import { useTheme } from 'vuetify'
import BarChart from '@/@core/libs/chartjs/components/BarChart'
import type { ChartJsCustomColors } from '@/views/charts/chartjs/types'
import { getLatestBarChartConfig } from '@core/libs/chartjs/chartjsConfig'

interface Props {
  colors: ChartJsCustomColors
}

const props = defineProps<Props>()

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>