Merge pull request #2122 from davidcochrum/release/1.1

Fix multi-dataset bar highlighting
Esse commit está contido em:
Evert Timberg
2016-03-13 09:29:59 -04:00
+4 -2
Ver Arquivo
@@ -83,8 +83,10 @@
bar.restore(['fillColor', 'strokeColor']);
});
helpers.each(activeBars, function(activeBar){
activeBar.fillColor = activeBar.highlightFill;
activeBar.strokeColor = activeBar.highlightStroke;
if (activeBar) {
activeBar.fillColor = activeBar.highlightFill;
activeBar.strokeColor = activeBar.highlightStroke;
}
});
this.showTooltip(activeBars);
});