시리즈 관련기능
pointPadding, pointWidth
을 구현 할 수 있습니다.
myChart.setOptions({
chart:{
type:'column'
},
yAxis: {
title:{
text: "Y축 타이틀"
},
xAxis: {
categories: ["서울","대전","대구"]
},
plotOptions: {
series: {
pointWidth: 15, //포인트의 너비를 설정한다.
pointPadding: 0.3 //포인트 간 padding 적용 값을 설정한다.
}
}
series: [{
name : "축구",
data : [10,32,15],
},{
name : "농구",
data : [15,40,30],
},{
name : "야구",
data : [30,25,40],
}]
},{
append: true,
redraw: true
});
version | desc |
---|---|
7.3.0.0 |