seriesMouseOut (event)
시리즈에서 마우스 커서가 out 시점에 발생하는 이벤트입니다.
Info
Name |
Type |
Required |
Description |
event |
object |
선택 |
이벤트 인자 객체 |
type |
string |
선택(mouseout) |
이벤트 타입 |
Context Info
Name |
Type |
Required |
Description |
this |
object |
선택 |
시리즈 속성 |
this.name |
string |
선택 |
시리즈명 |
this.index |
number |
선택 |
시리즈 인덱스 |
this.data |
array |
선택 |
시리즈의 데이터 |
this.xData |
array |
선택 |
시리즈의 x축 데이터 |
this.yData |
array |
선택 |
시리즈의 y축 데이터 |
this.dataMax |
number |
선택 |
시리즈의 데이터에서 최대 값 |
this.dataMin |
number |
선택 |
시리즈의 데이터에서 최소 값 |
Example
myChart.setEvents({
seriesMouseOut: function(event) {
console.log("seriesMouseOut");
}
});
myChart.setEventListener("seriesMouseOut", function(event){
console.log("seriesMouseOut");
});
myChart.setOptions({
events : {
seriesMouseOut: function(event) {
console.log("seriesMouseOut");
}
}
})
Since