x축에 표시할 보조 점의 간격을 설정 합니다.
name | type | required(default) | description |
---|---|---|---|
minorTickInterval | number or string |
선택 | x축에 표시할 보조 점의 간격 |
value | description |
---|---|
auto | 간격을 자동으로 설정 |
myChart.setOptions({
chart: {
type: "column"
},
xAxis: {
minorTickInterval: 0.1, // x축에 표시할 보조 점의 간격 설정
minorTickWidth: 1,
minorTickLength: 5
},
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 |