findPoint
Finds a series point. The method accepts a function which will be called for each point until the function returns true
.
Parameters
callback Function
The function that will be called with the series points.
Returns
kendo.dataviz.ChartPoint
the found point.
Example - find a series point with value equal to 1
var point = series.findPoint(function(point) {
return point.value === 1;
});