minorTickColor (xAxis properties)

x축에 표시할 보조 점 색상을 설정합니다.

Info

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

Example

myChart.setOptions({
  chart: {
    type: "column"
  },
xAxis: {
    minorGridLineColor: '#c4c4c4',
    minorTickColor:"#ff0000", // x축에 표시할 보조 점의 색상 설정
    minorTickInterval: 0.1,
    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
});

s

제공 버전

version desc
7.3.0.0