minorTickColor (yAxis properties)

y축에 표시할 보조 눈금 색상을 설정합니다.

Info

name type required(default) description
minorTickColor string 선택(#999999) y축에 표시할 보조 눈금 색상

Example

myChart.setOptions({
  chart: {
    type: "column"
  },
yAxis: {
    minorTickInterval: 10,  
    minorTickColor: "#ff0000", // y축에 표시할 보조 눈금의 색상
    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
});

제공 버전

version desc
7.3.0.0