* Checks whether the given point is in the chart area. * @param {Point} point - in relative coordinates (see, e.g., getRelativePosition) * @returns {boolean}
(point)
| 814 | * @returns {boolean} |
| 815 | */ |
| 816 | isPointInArea(point) { |
| 817 | return _isPointInArea(point, this.chartArea, this._minPadding); |
| 818 | } |
| 819 | |
| 820 | getElementsAtEventForMode(e, mode, options, useFinalPosition) { |
| 821 | const method = Interaction.modes[mode]; |
no test coverage detected