var options = {
series: [
{
name: 'Revenue ($k)',
data: [80, 50, 30, 40, 100, 20],
},
],
chart: {
height: 350,
type: 'radar',
},
title: {
text: 'Monthly Sales Performance',
},
yaxis: {
stepSize: 20,
},
xaxis: {
categories: ['January', 'February', 'March', 'April', 'May', 'June'],
},
}
var chart = new ApexCharts(document.querySelector('#chart'), options)
chart.render()