Is it possible to display the number in the range slider with a dot as thousand separator: Carbon Footprint / RND | Observable
viewof income = Inputs.range([0, 300000 * adults], {
label: htmlBruttoeinkommen des Haushalts pro Jahr in Euro:
,
step: 100,
format: (x) => x.toLocaleString(“de”),
value: adults == 1 ? 31000 : 31000 * 2
})