시리즈의 데이터 stack 방법을 설정 합니다.
name | type | required | description |
---|---|---|---|
stacking | string |
선택 | stack 방법 |
value | description |
---|---|
null | 사용 안함 |
normal | 일반 stack 방법 |
percent | 비율 stack 방법 |
myChart.setOptions({
chart: {
type: "column"
},
plotOptions: {
column: {
stacking: "normal"
}
},
series: [{
name: "서울",
data : [60,40,20,80]
},{
name: "인천",
data : [30,50,90,70]
},{
name: "부산",
data : [40,70,30,60]
}]
}, {
append: true,
redraw: true
});
version | desc |
---|---|
7.3.0.0 |