104 lines
2.8 KiB
Vue
104 lines
2.8 KiB
Vue
<script setup>
|
|
import { hexToRgb } from '@layouts/utils';
|
|
import VueApexCharts from 'vue3-apexcharts';
|
|
import { useTheme } from 'vuetify';
|
|
|
|
const vuetifyTheme = useTheme()
|
|
|
|
const series = [{
|
|
data: [
|
|
23,
|
|
81,
|
|
70,
|
|
31,
|
|
99,
|
|
46,
|
|
73,
|
|
],
|
|
}]
|
|
|
|
const chartOptions = computed(() => {
|
|
const currentTheme = vuetifyTheme.current.value.colors
|
|
const variableTheme = vuetifyTheme.current.value.variables
|
|
const disabledText = `rgba(${hexToRgb(String(currentTheme['on-surface']))},${variableTheme['disabled-opacity']})`
|
|
|
|
return {
|
|
chart: {
|
|
parentHeightOffset: 0,
|
|
toolbar: { show: false },
|
|
},
|
|
plotOptions: {
|
|
bar: {
|
|
borderRadius: 2,
|
|
distributed: true,
|
|
columnWidth: '10%',
|
|
endingShape: 'rounded',
|
|
startingShape: 'rounded',
|
|
},
|
|
},
|
|
legend: { show: false },
|
|
tooltip: { enabled: false },
|
|
dataLabels: { enabled: false },
|
|
colors: [
|
|
`rgba(${hexToRgb(String(currentTheme.primary))}, 0.16)`,
|
|
`rgba(${hexToRgb(String(currentTheme.primary))}, 0.16)`,
|
|
`rgba(${hexToRgb(String(currentTheme.primary))}, 0.16)`,
|
|
`rgba(${hexToRgb(String(currentTheme.primary))}, 0.16)`,
|
|
`rgba(${hexToRgb(String(currentTheme.primary))}, 1)`,
|
|
`rgba(${hexToRgb(String(currentTheme.primary))}, 0.16)`,
|
|
`rgba(${hexToRgb(String(currentTheme.primary))}, 0.16)`,
|
|
],
|
|
states: {
|
|
hover: { filter: { type: 'none' } },
|
|
active: { filter: { type: 'none' } },
|
|
},
|
|
xaxis: {
|
|
categories: [
|
|
'M',
|
|
'T',
|
|
'W',
|
|
'T',
|
|
'F',
|
|
'S',
|
|
'S',
|
|
],
|
|
axisTicks: { show: false },
|
|
axisBorder: { show: false },
|
|
tickPlacement: 'on',
|
|
labels: {
|
|
style: {
|
|
fontSize: '14px',
|
|
colors: disabledText,
|
|
fontFamily: 'Public Sans',
|
|
},
|
|
},
|
|
},
|
|
yaxis: { show: false },
|
|
grid: {
|
|
show: false,
|
|
padding: {
|
|
left: 0,
|
|
top: -10,
|
|
right: 7,
|
|
bottom: -3,
|
|
},
|
|
},
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<VCard>
|
|
<VCardText class="pb-1">
|
|
<h6 class="text-base font-weight-regular">
|
|
Revenue
|
|
</h6>
|
|
<h5 class="text-h5 font-weight-medium">
|
|
425k
|
|
</h5>
|
|
</VCardText>
|
|
|
|
<VueApexCharts type="bar" :height="110" :options="chartOptions" :series="series" />
|
|
</VCard>
|
|
</template>
|