render({
mark: { type: "line" },
data: { values: data },
encoding: {
"x": {
"field": "month",
"type": "nominal",
"sort": ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
},
"y": {
"field": "sunshine_hours",
"type": "q"
},
"color": {
"field": "city"
}
},
width: 600
})