No clicking on empty bins in the Histogram

This commit is contained in:
Henrik Giesel 2021-01-26 13:48:36 +01:00
parent 322788133b
commit cef92ad554

View file

@ -162,6 +162,9 @@ export function histogramGraph(
.on("mouseout", hideTooltip);
if (data.onClick) {
hoverzone.attr("class", "clickable").on("click", data.onClick);
hoverzone
.filter((d: Bin<number, number>) => d.length > 0)
.attr("class", "clickable")
.on("click", data.onClick);
}
}