There was an error while loading. Please reload this page.
1 parent 1c94d73 commit 16bd39cCopy full SHA for 16bd39c
1 file changed
src/plot.js
@@ -23,7 +23,8 @@ export function plot(options = {}) {
23
const svg = create("svg")
24
.attr("viewBox", [0, 0, width, height])
25
.style("max-width", `${width}px`)
26
- .style("display", "block");
+ .style("display", "block")
27
+ .style("background", "white");
28
29
for (const mark of marks) {
30
const index = mark.data === undefined ? undefined : Array.from(mark.data, indexOf);
0 commit comments