데이터 표시 (chartSkill)

1000 개 이상 데이터 표시 방법입니다.
1000개부터 렌더링하기 위해서는 turboThreshold를 설정 해주어야 합니다.

Info

name type required description
turboThreshold number 선택(1000) 0일 경우 사용하지 않음

Example

myChart.setOptions({
  chart:{
    type:'line'
  },
  plotOptions: {
    series: {
      turboThreshold: 2001 //default: 1000
    },
  },
  series: [{
    data : [...]
  }]
},{
  append: true,
  redraw: true
});

s

Since

version desc
7.3.0.0