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