x축의 보임 여부를 설정합니다.
name | type | required(default) | description |
---|---|---|---|
visible | boolean |
선택(true) | x축 보임 여부 |
myChart.setOptions({
chart:{
type: "column"
},
xAxis: {
visible: false // x축 보임 여부
},
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.0.0 |