minorTickWidth (yAxis properties)
y축에 표시할 보조 눈금의 너비를 설정 합니다.
참고 : minorTick 을 사용하기 위해서는 반드시 minorTickWidth 의 값을 설정해야 합니다.
Info
name |
type |
required(default) |
description |
minorTickWidth |
number |
선택(0) |
y축에 표시할 보조 눈금의 너비 |
Example
myChart.setOptions({
chart: {
type: "column"
},
yAxis: {
minorTickInterval: 10,
minorTickColor: "#ff0000",
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
});
제공 버전