Files
2026-05-25 20:01:37 +07:00

33 lines
677 B
Vue

<template>
<div class="example">
<apexcharts width="500" height="350" type="bar" :options="chartOptions" :series="series"></apexcharts>
</div>
</template>
<script>
import Chart from './components/oneChart.vue'
export default {
name: 'Chart',
components: {
apexcharts: VueApexCharts,
},
data: function() {
return {
chartOptions: {
chart: {
id: 'basic-bar'
},
xaxis: {
categories: [1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998]
}
},
series: [{
name: 'series-1',
data: [30, 40, 45, 50, 49, 60, 70, 91]
}]
}
},
}
</script>