minorTickInterval (yAxis properties)
y축에 표시할 보조 점의 간격을 설정 합니다.
Info
name |
type |
required(default) |
description |
minorTickInterval |
number or string |
선택 |
y축에 표시할 보조 점의 간격 |
Enum
value |
description |
auto |
간격을 자동으로 설정 |
Example
myChart.setOptions({
chart: {
type: "column"
},
yAxis: {
gridLineColor: "#999999",
minorGridLineColor: '#FF8C00',
minorTickInterval: 10
},
series: [{
name: "서울",
data : [60,40,20,80]
},{
name: "인천",
data : [30,50,90,70]
},{
name: "부산",
data : [40,70,30,60]
}]
}, {
append: true,
redraw: true
});

제공 버전