spec = ({
width: 500,
height: 350,
mark: { type: "bar", tooltip: true },
encoding: {
x: {
bin: { step: 20000 },
field: "retirement_fund_value",
type: "quantitative",
scale: { zero: true },
axis: {
format: "s",
labelFontSize: 30,
titleFontSize: 30,
values: [0.5e6, 0.75e6, 1e6, 2e6]
}
},
y: {
aggregate: "count",
title: "count of simulations",
scale: { nice: false },
axis: { gridOpacity: 0.3, format: ",.0f", nice: false }
},
order: color ? { field: "simulation_in" } : { sort: "ascending" },
color: color
? {
field: "simulation_in",
type: "nominal",
legend: false
}
: {}
},
data: { name: "data" },
datasets: { data: [] }
})