-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dont hide graph series label in compare view #445
- Loading branch information
io53
committed
Sep 29, 2024
1 parent
a413434
commit 8aa777d
Showing
4 changed files
with
17 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
export default { | ||
hooks: { | ||
init(u, opts) { | ||
const legend = document.getElementsByClassName("u-legend")[0]; | ||
legend.style.visibility = 'hidden'; | ||
|
||
u.over.addEventListener("mouseleave", () => { | ||
export default function (hideClass = "u-legend") { | ||
return { | ||
hooks: { | ||
init(u, opts) { | ||
const legend = document.getElementsByClassName(hideClass)[0]; | ||
legend.style.visibility = 'hidden'; | ||
}); | ||
|
||
u.over.addEventListener("mousemove", () => { | ||
legend.style.visibility = ''; | ||
}); | ||
u.over.addEventListener("mouseleave", () => { | ||
legend.style.visibility = 'hidden'; | ||
}); | ||
|
||
u.over.addEventListener("mousemove", () => { | ||
legend.style.visibility = ''; | ||
}); | ||
} | ||
} | ||
} | ||
}; |