선의 시작과 끝을 연결할지 여부를 정합니다.
참고:polar
차트에만 적용됩니다.
name | type | required | description |
---|---|---|---|
connectEnds | boolean |
선택(true) | 선의 시작과 끝 연결 설정 |
myChart.setOptions({
chart: {
type: "line",
polar: true
},
plotOptions: {
line: {
connectEnds: false // 선의 시작과 끝 연결 설정
}
},
series: [{
name : "서울",
data : [60,40,20,80,90]
}]
}, {
append: true,
redraw: true
});
version | desc |
---|---|
7.3.0.0 |