doPrint() 호출 시 프린트 직후 발생하는 이벤트입니다.
| Name | Type | Required | Description |
|---|---|---|---|
| event | object |
선택 | 이벤트 인자 객체 |
| type | string |
선택(print) | 이벤트 타입 |
myChart.setEvents({
afterPrint: function(event) {
console.log("afterPrint");
}
});
myChart.setEventListener("afterPrint", function(event){
console.log("afterPrint");
});
myChart.setOptions({
events : {
afterPrint: function(event) {
console.log("afterPrint");
}
}
})
| version | desc |
|---|---|
| 7.3.0.0 |