☰
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: "",
data: [200, 330, 548, 740, 880, 990, 1100, 1380],
},
],
chartOptions: {
chart: {
type: 'bar',
height: 350,
dropShadow: {
enabled: true,
},
},
plotOptions: {
bar: {
borderRadius: 0,
horizontal: true,
distributed: true,
barHeight: '80%',
isFunnel: true,
},
},
colors: [
'#F44F5E',
'#E55A89',
'#D863B1',
'#CA6CD8',
'#B57BED',
'#8D95EB',
'#62ACEA',
'#4BC3E6',
],
dataLabels: {
enabled: true,
formatter: function (val, opt) {
return opt.w.globals.labels[opt.dataPointIndex]
},
dropShadow: {
enabled: true,
},
},
title: {
text: 'Pyramid Chart',
align: 'middle',
},
xaxis: {
categories: ['Sweets', 'Processed Foods', 'Healthy Fats', 'Meat', 'Beans & Legumes', 'Dairy', 'Fruits & Vegetables', 'Grains'],
},
legend: {
show: false,
},
},
},
})
<div id="chart">
<apexchart type="bar" height="350" :options="chartOptions" :series="series"></apexchart>
</div>