remove hover effects for small charts
This commit is contained in:
parent
c427fd0a72
commit
36ceb0d1fa
@ -82,7 +82,7 @@ function createResourceUsageChart (container, resourceName, resourceAvail, resou
|
||||
hoverOffset: 4
|
||||
}]
|
||||
},
|
||||
breakpoint: "680px"
|
||||
breakpoint: 680
|
||||
}
|
||||
chart.style = "margin: 10px;";
|
||||
}
|
||||
|
@ -76,14 +76,25 @@ class ResourceChart extends HTMLElement {
|
||||
tooltip: {
|
||||
enabled: true
|
||||
}
|
||||
},
|
||||
interaction: {
|
||||
mode: "nearest"
|
||||
},
|
||||
onHover: function(e, activeElements) {
|
||||
if (window.innerWidth <= data.breakpoint) {
|
||||
updateTooltipShow(e.chart, false);
|
||||
}
|
||||
else {
|
||||
updateTooltipShow(e.chart, true);
|
||||
}
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
createChart(this.canvas, chartData);
|
||||
this.chart = createChart(this.canvas, chartData);
|
||||
|
||||
if (data.breakpoint) {
|
||||
this.responsiveStyle.media = `screen and (width <= ${data.breakpoint})`;
|
||||
this.responsiveStyle.media = `screen and (width <= ${data.breakpoint}px)`;
|
||||
}
|
||||
else {
|
||||
this.responsiveStyle.media = "not all";
|
||||
@ -99,4 +110,11 @@ function createChart (ctx, data) {
|
||||
return new Chart(ctx, data);
|
||||
}
|
||||
|
||||
// this is a really bad way to do this, but chartjs api does not expose many ways to dynamically set hover and tooltip options
|
||||
function updateTooltipShow (chart, enabled) {
|
||||
chart.options.plugins.tooltip.enabled = enabled;
|
||||
chart.options.interaction.mode = enabled ? "nearest" : null;
|
||||
chart.update();
|
||||
}
|
||||
|
||||
customElements.define("resource-chart", ResourceChart);
|
||||
|
Loading…
Reference in New Issue
Block a user