mirror of
https://github.com/chartjs/Chart.js.git
synced 2026-03-06 16:26:52 +01:00
Don't kill lastActives on chart hover exit
This commit is contained in:
@@ -375,8 +375,8 @@
|
||||
|
||||
// Find Active Elements for hover and tooltips
|
||||
if (e.type == 'mouseout') {
|
||||
this.active = this.lastActive = [];
|
||||
this.tooltipActive = this.lastTooltipActive = [];
|
||||
this.active = [];
|
||||
this.tooltipActive = [];
|
||||
} else {
|
||||
this.active = function() {
|
||||
switch (this.options.hover.mode) {
|
||||
|
||||
Reference in New Issue
Block a user