Published
Edited
Jan 14, 2022
1 star
Insert cell
Insert cell
viewof periodIndex = Inputs.range([0, periods.length], {step: 1})
Insert cell
chart = {
const svg = d3.create('svg')
.attr('viewBox', [0, 0, width, height])
svg.append('g')
.call(xAxis)
.attr('transform', `translate(0, ${height - padding.bottom})`)

/*
svg.append('g')
.call(yAxis)
.attr('transform', `translate(${padding.left}, 0)`)
*/
let bars = svg.append('g')
.selectAll('rect')

return Object.assign(svg.node(), {
update(periods) {
bars = bars
.data(periods, d => d.id)
.join(
enter => enter.append('rect')
.attr('opacity', 0)
.call(bars => bars.transition()
.attr('opacity', 1)),
update => update
.attr('opacity', 1),
exit => exit
.call(bars => bars.transition()
.attr('opacity', 0)
.remove())
)
.attr('x', d => xScale(d.fromDate))
.attr('width', d => xScale(d.toDate) - xScale(d.fromDate))
.attr('height', d => yScale.range()[0] - yScale(1))
.attr('y', d => yScale.range()[1])
.attr('fill', d => d.code in colorsConfig ? colorsConfig[d.code] : '#444')
}
})
}
Insert cell
chart.update(chartPeriods)
Insert cell
chartPeriods = periods.filter((d, i) => i < periodIndex)
Insert cell
yScale = d3.scaleLinear()
.domain([0, 1])
.range([height - padding.top, padding.bottom])
Insert cell
yAxisFormat = d3.format('.0%')
Insert cell
yAxis = d3.axisLeft()
.scale(yScale)
.tickFormat(yAxisFormat)
.ticks(3)
Insert cell
xScale = d3.scaleTime()
.domain([d3.min(periods, d => new Date(d.from)), new Date()])
.range([0 + padding.left, width - padding.right])
Insert cell
xAxis = d3.axisBottom()
.scale(xScale)
Insert cell
periods = periodsConfig
.map(d => Object.assign(d, {
fromDate: new Date(d.from),
toDate: d.to ? new Date(d.to) : new Date()
}))
Insert cell
colorsConfig = ({
"bachelor": "#1f78b4",
"erasmus": "#a6cee3",
"master": "#1f78b4",
"fbk": "#33a02c",
"overit": "#33a02c"
})
Insert cell
periodsConfig = FileAttachment("periodsConfig.json").json()
Insert cell
width = 600
Insert cell
height = 80
Insert cell
padding = ({
top: 30,
right: 50,
bottom: 30,
left: 50
})
Insert cell
d3 = require('d3@v7')
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more