emptyCanvas = {
const svg = d3.create("svg")
.attr("width", width)
.attr("height", height);
const subPlot1 = svg.append("g")
.attr("class", "emptySubPlot1");
const sublot2 = svg.append("g")
.attr("transform", `translate(${chartWidth}, 0)`)
.attr("class", "emptySubPlot2");
return svg.node();
}