시리즈의 포인트가 갱신되는 시점에 발생하는 이벤트입니다.
Name | Type | Required | Description |
---|---|---|---|
event | object |
선택 | 이벤트 인자 객체 |
type | string |
선택(update) | 이벤트 타입 |
myChart.setEvents({
pointUpdate: function(event) {
console.log("pointUpdate");
}
});
myChart.setEventListener("pointUpdate", function(event){
console.log("pointUpdate");
});
myChart.setOptions({
events : {
pointUpdate: function(event) {
console.log("pointUpdate);
}
}
})
version | desc |
---|---|
7.3.0.0 |