vegaEmbed({
width: 400,
data: { values: data },
layer: [
{
mark: { type: "bar", fill: "blue" },
encoding: {
x: { field: "Area", type: "N" },
y: { field: "Sales", type: "Q" }
}
},
{
mark: { type: "circle", fill: "red", size: 150 },
encoding: {
x: { field: "Area", type: "N" },
y: { field: "Profit", type: "Q" }
}
}
],
resolve: { scale: { y: "independent" } }
})