☰
Why Choose ApexCharts
- 20 chart types
- MIT License
- 1 million weekly downloads
- No registration needed
- 100+ samples includes
- FREE DOWNLOAD
new Vue({
el: '#app',
components: {
apexchart: VueApexCharts,
},
data: {
series: [{
name: 'Series 1',
data: [80, 50, 30, 40, 100, 20],
}],
chartOptions: {
chart: {
height: 350,
type: 'radar',
},
title: {
text: 'Basic Radar Chart'
},
yaxis: {
stepSize: 20
},
xaxis: {
categories: ['January', 'February', 'March', 'April', 'May', 'June']
}
},
},
})
<div id="chart">
<apexchart type="radar" height="350" :options="chartOptions" :series="series"></apexchart>
</div>