<template>
<div>
<div id="chart">
<apexchart
type="gauge"
height="350"
:options="chartOptions"
:series="series"
></apexchart>
</div>
</div>
</template>
<script>
import VueApexCharts from 'vue-apexcharts'
export default {
components: {
apexchart: VueApexCharts,
},
data: function () {
return {
series: [72],
chartOptions: {
chart: {
height: 350,
type: 'gauge',
},
labels: ['Progress'],
},
}
},
}
</script>
<style>
#chart {
padding: 0;
max-width: 380px;
margin: 35px auto;
}
</style>