(element, datasetIndex, index)
| 119 | } |
| 120 | |
| 121 | const evaluationFunc = function(element, datasetIndex, index) { |
| 122 | if (!includeInvisible && !_isPointInArea(element, chart.chartArea, 0)) { |
| 123 | return; |
| 124 | } |
| 125 | if (element.inRange(position.x, position.y, useFinalPosition)) { |
| 126 | items.push({element, datasetIndex, index}); |
| 127 | } |
| 128 | }; |
| 129 | |
| 130 | evaluateInteractionItems(chart, axis, position, evaluationFunc, true); |
| 131 | return items; |
nothing calls this directly
no test coverage detected