조회 된 차트의 데이터의 길이가 설정한 축의 max보다 적을 경우 max 값을 데이터의 길이로 변경합니다.
| name | type | required(default) | description |
|---|---|---|---|
| dynamicAxisMax | boolean |
선택(false) | yAxis.max 변경 여부 |
myChart.setOptions({
chart:{
type: "column"
},
yAxis: {
dynamicAxisMax: true
},
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.1.27 | 기능 추가 |