VegaLite({
title: "Hours of Sunshine",
width: 500,
height: 300,
data: {values: data},
selection: {
select: {
type: "single",
fields: ["city"],
bind: {"input": "select", "options": citys}
}
},
mark: {type: "line", point: true},
encoding: {
x: { field: "month", type: "nominal", "sort": {"op": "sum", "field": "monthnum"}},
y: {field: "sunshine", type: "quantitative"},
color: {
condition: {
selection: "select",
field: "city", type: "nominal"
},
value: "grey"
}
}
})