2022-09-08 15:06:44 -04:00

43 lines
952 B
JavaScript

const revenueChart = {
series: [{
name: 'Revenue',
data: [42, 85, 101, 56, 37, 105, 38, 58, 92, 82, 72, 32]
}],
chartOptions: {
chart: {
toolbar: {
show: false,
}
},
plotOptions: {
bar: {
horizontal: false,
columnWidth: '14%',
endingShape: 'rounded'
},
},
dataLabels: {
enabled: false
},
stroke: {
show: true,
width: 2,
colors: ['transparent']
},
xaxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
},
yaxis: {
title: {
text: '$ (thousands)'
}
},
fill: {
opacity: 1
},
colors: ['#556ee6'],
}
};
export { revenueChart };