Skip to content

Commit

Permalink
hiding tooltip for now
Browse files Browse the repository at this point in the history
  • Loading branch information
moriondo2022 committed Nov 20, 2024
1 parent 7978251 commit 39dc430
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/Heatmap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ export default Vue.component("heatmap", {
separator: "___",
lo: null,
mid: null,
hi: null
hi: null,
alwaysHideTooltip: true,
};
},
modules: {
Expand Down Expand Up @@ -241,6 +242,9 @@ export default Vue.component("heatmap", {
scaleLegendWrapper.innerHTML = scaleLegendContent;
},
checkPosition(event) {
if (this.alwaysHideTooltip){
return;
}
let e = event;
let rect = e.target.getBoundingClientRect();
Expand Down

0 comments on commit 39dc430

Please sign in to comment.