(type, chart, x, y, nativeEvent)
| 7540 | } |
| 7541 | |
| 7542 | function createEvent(type, chart, x, y, nativeEvent) { |
| 7543 | return { |
| 7544 | type: type, |
| 7545 | chart: chart, |
| 7546 | native: nativeEvent || null, |
| 7547 | x: x !== undefined ? x : null, |
| 7548 | y: y !== undefined ? y : null, |
| 7549 | }; |
| 7550 | } |
| 7551 | |
| 7552 | function fromNativeEvent(event, chart) { |
| 7553 | var type = EVENT_TYPES[event.type] || event.type; |
no outgoing calls
no test coverage detected