포인트 시작 점을 설정 합니다.
name | type | required | description |
---|---|---|---|
pointStart | number |
선택(0) | 포인트 시작 점 |
myChart.setOptions({
chart: {
type: "column"
},
plotOptions: {
column: {
pointStart:2
}
},
series: [{
name: "서울",
data : [60,40,20,80]
},{
name: "인천",
data : [30,50,90,70]
}]
}, {
append: true,
redraw: true
});
version | desc |
---|---|
7.3.0.0 |