VegaLite ({
width: 600,
height:400,
data: {values: VT},
mark: "point",
encoding: {
y:{field: "municipality", type: "nominal", title: "City"},
x:{aggregate: "redLightVTs", field: "redLightVTs", type: "quantitative", title: "Red Light Violation Tickets"},
size: {field: "redLightVTs", type: "quantitative", scale: {domain: [1, 3530]}},
tooltip: [{
field: "redLightVTs", title: "Number of Tickets",type: "quantitative", },{
field: "location", title: "Location", type: "string",
}],
color: {
condition:{
field: "municipality",
type: "nominal",
selection: "offenseSelect",
},
value: "lightgrey",
}
},
selection: {
offenseSelect: {fields: ["municipality"], on: "mouseover", type: "multi"}
},
})