addPoint (event)

포인트 추가 완료 시점에 발생하는 이벤트입니다.

Info

Name Type Required Description
event object 선택 이벤트 인자 객체
type string 선택 이벤트 타입

Example

myChart.setEvents({
  addPoint : function(event) {
    console.log("addPoint");
    return true;
  }
});

myChart.setEventListener("addPoint ", function(event){
  console.log("addPoint");
  return true;
});

myChart.setOptions({
  events : {
    addPoint : function(event) {
        console.log("addPoint");
          return true;
    }
  }
});

Since

version desc
7.3.1.18 기능추가