baseSpec = ({
width: 600,
height: 100,
padding: { bottom: 20, top: 20 },
title: "No Tooltip",
mark: { type: "circle" },
transform: [
{
window: [{ op: "row_number", as: "unit" }],
sort: [{ field: "profession" }]
},
{ calculate: "ceil(datum.unit/ 4)", as: "unitX" },
{ calculate: "datum.unit - (datum.unitX - 1) * 4", as: "unitY" }
],
encoding: {
x: { field: "unitX", type: "nominal", axis: null },
y: { field: "unitY", type: "nominal", axis: null },
color: { field: "profession", legend: null },
opacity: { value: 0.7 },
size: { value: 600 }
},
config: { view: { stroke: null }, title: { offset: 20 } },
data: { values: peopleData }
})