Skip to content

Commit

Permalink
fix: revert highlight point index value
Browse files Browse the repository at this point in the history
  • Loading branch information
almike committed Jul 25, 2016
1 parent becd772 commit 405efe2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/lineChart.js
Expand Up @@ -293,7 +293,7 @@ nv.models.lineChart = function() {
var point = currentValues[pointIndex];
var pointYValue = chart.y()(point, pointIndex);
if (pointYValue !== null) {
lines.highlightPoint(series.seriesIndex, pointIndex, true);
lines.highlightPoint(i, pointIndex, true);
}
if (point === undefined) return;
if (singlePoint === undefined) singlePoint = point;
Expand Down

0 comments on commit 405efe2

Please sign in to comment.