ApexChartStocksPrices.vue
1.78 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
<script lang="ts" setup>
import { useTheme } from 'vuetify'
import { getCandlestickChartConfig } from '@core/libs/apex-chart/apexCharConfig'
const vuetifyTheme = useTheme()
const chartConfig = computed(() => getCandlestickChartConfig(vuetifyTheme.current.value))
const series = [
{
data: [
{
x: `7/12/${new Date().getFullYear()}`,
y: [150, 170, 50, 100],
},
{
x: `8/12/${new Date().getFullYear()}`,
y: [200, 400, 170, 330],
},
{
x: `9/12/${new Date().getFullYear()}`,
y: [330, 340, 250, 280],
},
{
x: `10/12/${new Date().getFullYear()}`,
y: [300, 330, 200, 320],
},
{
x: `11/12/${new Date().getFullYear()}`,
y: [320, 450, 280, 350],
},
{
x: `12/12/${new Date().getFullYear()}`,
y: [300, 350, 80, 250],
},
{
x: `13/12/${new Date().getFullYear()}`,
y: [200, 330, 170, 300],
},
{
x: `14/12/${new Date().getFullYear()}`,
y: [200, 220, 70, 130],
},
{
x: `15/12/${new Date().getFullYear()}`,
y: [220, 270, 180, 250],
},
{
x: `16/12/${new Date().getFullYear()}`,
y: [200, 250, 80, 100],
},
{
x: `17/12/${new Date().getFullYear()}`,
y: [150, 170, 50, 120],
},
{
x: `18/12/${new Date().getFullYear()}`,
y: [110, 450, 10, 420],
},
{
x: `19/12/${new Date().getFullYear()}`,
y: [400, 480, 300, 320],
},
{
x: `20/12/${new Date().getFullYear()}`,
y: [380, 480, 350, 450],
},
],
},
]
</script>
<template>
<VueApexCharts
type="candlestick"
height="385"
:options="chartConfig"
:series="series"
/>
</template>