minorGridLineColor (yAxis properties)

보조 그리드 라인의 색상을 설정 합니다.

Info

name type required(default) description
minorGridLineColor color 선택 보조 그리드 라인의 색상

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
});

제공 버전

version desc
7.3.0.0