(e, mode, options, useFinalPosition)
| 818 | } |
| 819 | |
| 820 | getElementsAtEventForMode(e, mode, options, useFinalPosition) { |
| 821 | const method = Interaction.modes[mode]; |
| 822 | if (typeof method === 'function') { |
| 823 | return method(this, e, options, useFinalPosition); |
| 824 | } |
| 825 | |
| 826 | return []; |
| 827 | } |
| 828 | |
| 829 | getDatasetMeta(datasetIndex) { |
| 830 | const dataset = this.data.datasets[datasetIndex]; |
no outgoing calls
no test coverage detected