ChartJsLineAreaChart.vue
2.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<script setup lang="ts">
import { useTheme } from 'vuetify'
import type { ChartJsCustomColors } from '@/views/charts/chartjs/types'
import { getLineAreaChartConfig } from '@core/libs/chartjs/chartjsConfig'
import LineChart from '@core/libs/chartjs/components/LineChart'
interface Props {
colors: ChartJsCustomColors
}
const props = defineProps<Props>()
const vuetifyTheme = useTheme()
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',
'20/12',
'',
],
datasets: [
{
fill: true,
tension: 0,
label: 'Africa',
pointRadius: 0.5,
pointHoverRadius: 5,
pointStyle: 'circle',
backgroundColor: props.colors.areaChartBlue,
pointHoverBorderWidth: 5,
borderColor: 'transparent',
pointHoverBorderColor: props.colors.white,
pointBorderColor: 'transparent',
pointHoverBackgroundColor: props.colors.areaChartBlue,
data: [40, 55, 45, 75, 65, 55, 70, 60, 100, 98, 90, 120, 125, 140, 155],
},
{
fill: true,
tension: 0,
label: 'Asia',
pointRadius: 0.5,
pointHoverRadius: 5,
pointStyle: 'circle',
pointHoverBorderWidth: 5,
borderColor: 'transparent',
backgroundColor: props.colors.areaChartBlueLight,
pointHoverBorderColor: props.colors.white,
pointBorderColor: 'transparent',
pointHoverBackgroundColor: props.colors.areaChartBlueLight,
data: [70, 85, 75, 150, 100, 140, 110, 105, 160, 150, 125, 190, 200, 240, 275],
},
{
fill: true,
tension: 0,
label: 'Europe',
pointRadius: 0.5,
pointHoverRadius: 5,
pointStyle: 'circle',
pointHoverBorderWidth: 5,
borderColor: 'transparent',
backgroundColor: props.colors.areaChartGreyLight,
pointHoverBorderColor: props.colors.white,
pointBorderColor: 'transparent',
pointHoverBackgroundColor: props.colors.areaChartGreyLight,
data: [240, 195, 160, 215, 185, 215, 185, 200, 250, 210, 195, 250, 235, 300, 315],
},
],
}
const chartConfig = computed(() => getLineAreaChartConfig(vuetifyTheme.current.value))
</script>
<template>
<LineChart
:chart-options="chartConfig"
:height="400"
:chart-data="data"
/>
</template>