gridLineInterpolation (yAxis properties)

그리드 라인의 모양을 설정 합니다.
polar 차트에서만 사용할 수 있습니다.

Info

name type required(default) description
gridLineInterpolation string 선택(circle) 그리드 라인의 모양 설정

Enum

value description
circle
polygon 다각형

Example

myChart.setOptions({
  chart: {
    type: "line",
    polar: true
  },
  yAxis: {
    gridLineInterpolation: "polygon", // 그리드 라인의 모양 설정
    gridLineColor: "#000000",
    gridLineWidth: 2
  },
  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