minorGridLineDashStyle (yAxis properties)

보조 그리드 라인의 종류 설정 합니다.

Info

name type required(default) description
minorGridLineDashStyle string 선택(dot) 보조 그리드 라인의 종류

Enum

value description
Solid 실선
ShortDash 짧은 대쉬선
ShortDot 짧은 점선
ShortDashDot 짧은 대쉬+점
ShortDashDotDot 짧은 대쉬+점+점
Dot 점선
Dash 대쉬선
LongDash 긴 대쉬선
DashDot 대쉬+점
LongDashDot 긴 대쉬+점
LongDashDotDot 긴 대쉬+점+점

Example

myChart.setOptions({
  chart: {
    type: "column"
  },
  yAxis: {
    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
});

제공 버전

version desc
7.3.0.0