stackedHisto = function(data, height) {
let div = html`
<style>
.axis {
pointer-events: none;
}
</style>
<div clas="root">
<svg></svg>
</div>
`
let className = "sh_tooltip"
let tooltipDiv = makeTooltip(className)
div.appendChild(tooltipDiv)
const tooltip = d3.select(tooltipDiv).select("." + className)
const svg = d3.select(div).select("svg")
.attr("viewBox", [0, 0, width, height]);
svg.append("g")
.selectAll("rect.bg")
.data(dateRange)
.join("rect")
.classed("bg", true)
.attr("x", d => x(d))
.attr("y", d => margin.top)
.attr("width", x.bandwidth() )
.attr("height", d => height - margin.bottom)
.style("fill", "#fff")
.on("mouseover", function(d) {
d3.select(this).style("fill", "#dfdfdf")
tooltipDiv.update(this, d, data)
// tooltipDiv.update(this, d, points[d].points, points[d].total)
})
.on("mouseout", function(d) {
d3.select(this).style("fill", "#fff")
let ee = d3.event.toElement
console.log(tooltip.node().contains(ee))
// TODO: simplify this and move it to tooltip
if(!tooltip.node().contains(ee) &&
//ee != tooltip.node() &&
!d3.select(ee).classed("bg")) {
tooltip.style("display", "none")
}
})
let ys = d3.scaleLinear()
.domain([0, d3.max(data, d => d3.max(d, d => d[1]))]).nice()
.range([height - margin.bottom, margin.top])
svg.append("g")
.selectAll("g")
.data(data)
.join("g")
.attr("fill", (d) => {
return d[0].data.color.color
})
.style("pointer-events", "none")
.call((g,div) => {
return g.selectAll("rect")
.data(d => { return d})
.join("rect")
.attr("x", (d) => {
return x(d.data.date)
})
.attr("y", (d,i) => ys(d[1]))
.attr("width", x.bandwidth())
.attr("height", (d,i) => {return ys(d[0]) - ys(d[1])})
});
/* Axis and grid lines */
svg.append("g").classed("axis", true)
.attr("transform", `translate(${+x.bandwidth()/2 - .5},${height - margin.bottom})`)
.call(xAxisLines(dateRange, height, margin, "#dfdfdf"));
svg.append("g").classed("axis", true)
.attr("transform", `translate(${-x.bandwidth()/2 - .5},${height - margin.bottom})`)
.call(xAxisLines(xTicks, height, margin, "#999"));
svg.append("g").classed("axis", true)
.attr("transform", `translate(${-x.bandwidth()/2 - .5},${height - margin.bottom})`)
.call(xAxis);
svg.append("line").classed("axis", true)
.attr("x1", x(start_date))
.attr("x2", x(end_date) + x.bandwidth())
.attr("y1", height - margin.bottom)
.attr("y2", height - margin.bottom)
.style("stroke", "#dfdfdf")
svg.append("line").classed("axis", true)
.attr("x1", x(start_date))
.attr("x2", x(end_date) + x.bandwidth())
.attr("y1", height - margin.bottom)
.attr("y2", height - margin.bottom)
.style("stroke", "#dfdfdf")
// svg.append("g")
// .call(yAxis);
// return svg.node();
return div
}