minorGridLineDashStyle (xAxis properties)
보조 그리드 라인의 종류 설정 합니다.
Info
name |
type |
required(default) |
description |
minorGridLineDashStyle |
string |
선택 |
보조 그리드 라인의 종류 |
Enum
value |
description |
solid |
실선 |
dash |
짧은 점선 |
longdash |
긴 점선 |
dot |
점 |
Example
myChart.setOptions({
chart: {
type: "column"
},
xAxis: {
gridLineColor: "#999999",
minorGridLineDashStyle: "dash",
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
});
제공 버전