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