Plot.plot({
grid:true,
title: "Editors per Issue",
marginLeft:250,
marginBottom: 100,
width: 1280,
color:{legend:true},
style:{fontSize:20},
marks: [
Plot.cell(editors, {
x: d => d.issue,
y: d=> d.editor,
fill: d=>d.level,
title: d=>"| title: " + d.title + "\n author: " + d.author + "\n editor: " + d.editor,
tip:true
}),
Plot.axisX({label: "Indicator Issues", labelAnchor: "right", fontSize: 15}),
Plot.axisY({label: "Titles per Issue", labelAnchor: "top", fontSize: 15}),
]
})