<div >
<apexchart type="donut" :options="chartOptions" :series="series"></apexchart>
</div>
<apexchart
type="donut"
:options="chartOptions"
:series="series"
></apexchart>
data: function () {
return {
series: [44, 55, 41, 17, 15],
chartOptions: {
chart: {
type: "donut",
},
responsive: [
{
breakpoint: 480,
options: {
chart: {
width: 200,
},
legend: {
position: "bottom",
},
},
},
],
},
};
},