vl({
width: 300,
height: 300,
title: "East & South region are the leaders in Sales",
data: { values: table },
layer: [
{
params: [
{
name: "colorChanger",
select: {
type: "point",
on: "mouseover",
nearest: true
}
}
],
mark: "bar",
encoding: {
x: {
field: "Area",
type: "nominal",
sort: "-y",
axis: { labelAngle: 0, title: "Areas of Operations" }
},
y: {
field: "Sales",
type: "quantitative",
axis: { grid: false, title: "Sales & Average (in INR)" }
},
color: { field: "Sales", type: "quantitative" },
opacity: {
value: 0.5,
condition: {
param: "colorChanger",
value: 1
}
},
size: { value: 40 }
}
},
{
mark: { type: "rule", strokeDash: [1, 0], color: "red" },
encoding: {
y: {
field: "Sales",
type: "quantitative",
aggregate: "mean",
axis: { grid: false }
},
size: { value: 3 },
color: { value: "black" }
}
}
]
})