vegalite({
width: 400,
height: 300,
data: {url: dataUrl},
selection: {"barSelect": {type: "single", on: "mouseover"}},
mark: "bar",
encoding:{
x: {field: "area", type: "N"},
y: {field: "sales", type: "Q"},
color: {condition: {selection: "barSelect", field: "profit", type: "Q"}, value: "red"}
}
})