htl.html`${await Promise.all(
diff.map(
async (data, i) =>
htl.html`<p>Hello, here is chart ${i}</p>${await vl
.markCircle({
thickness: 4,
bandSize: 2
})
.data(data)
.encode(
vl
.x()
.fieldQ("mins")
.scale({ domain: [-60, 60] }),
vl
.color()
.fieldN("type")
.scale({ range: ["#636363", "#f03b20"] })
)
.config({ bandSize: 10 })
.width(600)
.height(40)
.render()}`
)
)}`