차트의 색상을 시리즈 별로 구분할 지, 포인트 별로 구분할 지 지정합니다.
name | type | required | description |
---|---|---|---|
colorByPoint | boolean |
선택(false) | 차트 색상 구분 지정 |
myChart.setOptions({
chart: {
type: "bar"
},
plotOptions: {
bar: {
colorByPoint: true // 포인트 별로 다르게 색 지정
}
},
series: [{
name : "서울",
data : [60,40,20,80,90]
}]
}, {
append: true,
redraw: true
});
version | desc |
---|---|
7.3.0.0 |