drillup (event)

드릴 업 시점에 발생하는 이벤트 입니다.

Info

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

Example

myChart.setEvents({
  drillup: function(event) {
    console.log("drillup");
  }
});

myChart.setEventListener("drillup", function(event){
  console.log("drillup");
});

myChart.setOptions({
  events : {
    drillup: function(event) {
      console.log("drillup);
    }
  }
})

Since

version desc
7.3.0.0