maximumFractionPool1 = Plot.plot({
width: 640,
height: 720,
marginBottom: 50,
x: { label: null },
y: { axis: null },
marks: [
Plot.rectY(companiesWithMaxFractionPooling, {
x: "id",
y1: 0,
y2: "pooledRevenue",
fill: "green",
mixBlendMode: "multiply",
fillOpacity: 0.75
}),
Plot.rectY(companiesWithMaxFractionPooling, {
x: "id",
y1: "pooledRevenue",
y2: (d) => d.pooledRevenue + d.unPooledRevenue,
fill: "green",
mixBlendMode: "multiply",
fillOpacity: 0.25
})
]
})