62 lines
971 B
JavaScript
62 lines
971 B
JavaScript
var options = {
|
|
chart: {
|
|
height: 300,
|
|
type: 'bar',
|
|
stacked: true,
|
|
stackType: '100%'
|
|
},
|
|
plotOptions: {
|
|
bar: {
|
|
horizontal: true,
|
|
},
|
|
},
|
|
stroke: {
|
|
width: 1,
|
|
colors: ['#fff']
|
|
},
|
|
series: [{
|
|
name: 'iPhone',
|
|
data: [44, 55, 41, 37, 22, 43, 21]
|
|
},{
|
|
name: 'iPad',
|
|
data: [53, 32, 33, 52, 13, 43, 32]
|
|
},{
|
|
name: 'iMac',
|
|
data: [12, 17, 11, 9, 15, 11, 20]
|
|
},{
|
|
name: 'MacBook',
|
|
data: [9, 7, 5, 8, 6, 9, 4]
|
|
},{
|
|
name: 'MacMini',
|
|
data: [25, 12, 19, 32, 25, 24, 10]
|
|
}],
|
|
title: {
|
|
text: 'Apple Store'
|
|
},
|
|
xaxis: {
|
|
categories: [2008, 2009, 2010, 2011, 2012, 2013, 2014],
|
|
},
|
|
tooltip: {
|
|
y: {
|
|
formatter: function(val) {
|
|
return val + "K"
|
|
}
|
|
}
|
|
},
|
|
fill: {
|
|
opacity: 1
|
|
},
|
|
legend: {
|
|
position: 'bottom',
|
|
horizontalAlign: 'center',
|
|
},
|
|
colors: ['#005f1d', '#007524', '#01902d', '#00bb3a', '#5bca7d'],
|
|
}
|
|
|
|
var chart = new ApexCharts(
|
|
document.querySelector("#basic-bar-stack-graph-full-width"),
|
|
options
|
|
);
|
|
|
|
chart.render();
|