drillupAll (event)

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

Info

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

Example

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

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

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

Since

version desc
7.3.0.0