Public
Edited
Apr 26
Insert cell
Insert cell
Insert cell
data = [
{ letter: "A", frequency: 0.08167 },
{ letter: "B", frequency: 0.01492 },
{ letter: "C", frequency: 0.02782 },
{ letter: "D", frequency: 0.04253 },
{ letter: "E", frequency: 0.12702 },
{ letter: "F", frequency: 0.02288 },
{ letter: "G", frequency: 0.02015 },
{ letter: "H", frequency: 0.06094 },
{ letter: "I", frequency: 0.06966 },
{ letter: "J", frequency: 0.00153 }
];
Insert cell
Insert cell
Insert cell
Insert cell
chart = {
// Specify the chart’s dimensions.
const width = 640;
const height = 400;
const marginTop = 20;
const marginRight = 0;
const marginBottom = 30;
const marginLeft = 40;

// Define color settings, feel free to modify
const default_color = "steelblue";
const highlight_color = "orange";
// Declare the x (horizontal position) scale and the corresponding axis generator.
const x = d3.scaleBand()
.domain(data.map(d => d.letter))
.range([marginLeft, width - marginRight])
.padding(0.1);

const xAxis = d3.axisBottom(x).tickSizeOuter(0);

// Declare the y (vertical position) scale.
const y = d3.scaleLinear()
.domain([0, d3.max(data, d => d.frequency)]).nice()
.range([height - marginBottom, marginTop]);

// Create the SVG container.
const svg = d3.create("svg")
.attr("viewBox", [0, 0, width, height])
.attr("style", `max-width: ${width}px; height: auto; font: 10px sans-serif; overflow: visible;`);
// Define tooltip selector
// TODO: Append tooltip style definition after append("div")
const tooltip = d3.select("body").append("div")
.attr("id", "tooltip")
.style("position", "absolute")
.style("background", "black")
.style("border", "2px solid black")
.style("padding", "10px")
// Styles you may want to use: background, border, padding, etc.
// Remember to set div invisible and make position absolute for default

// Create a bar for each letter.
// TODO: 1. Add tooltip functionalities
// 2. Add an hover and on-click highlight color change to bars
const bar = svg.append("g")
.attr("fill", default_color)
.selectAll("rect")
.data(data)
.join("rect")
.style("mix-blend-mode", "multiply") // Darker color when bars overlap during the transition.
.attr("x", d => x(d.letter))
.attr("y", d => y(d.frequency))
.attr("height", d => y(0) - y(d.frequency))
.attr("width", x.bandwidth())
.on("mouseover", function(event, d) {
const current = d3.select(this);
if (!current.classed("clicked")) {
current.attr("fill", highlight_color);
}
tooltip
.style("display", "block")
.html(`<strong>Letter:</strong> ${d.letter}<br><strong>Frequency:</strong> ${(d.frequency * 100).toFixed(1)}%`)
.style("left", (event.pageX + 10) + "px")
.style("top", (event.pageY - 28) + "px")
.transition()
.duration(200)
.style("opacity", 0.9);
})
bar
.on('mouseover', (event, d) => {
d3.select('#tooltip')
.style('display', 'block')
.html(`<div class="tooltip-label">Value: </div>${d.value}`);
})
.on('mousemove', (event) => {
d3.select('#tooltip')
.style('left', (event.pageX + 10) + 'px')
.style('top', (event.pageY + 10) + 'px');
})
.on('mouseleave', () => {
d3.select('#tooltip').style('display', 'none');
});
// Add your code for the tooltip and on-click after .attr("width", x.bandwidth())
// Function you will use .on(eventType, listenerFunction)
// Tooltip: "mouseover", "mousemove", and "mouseout" functionalities
// On mouseover, set the bar color to highlight color, set the tooltip to visible and define position, and display image
// selector of the current bar can be defined by bar = d3.select(this)
// Tooltip message can be defined by .html(`YOUR MESSAGE`)
// On mousemove, update the tooltip position
// On mouseout, set tooltip back to invisible, if the bar is not clicked, reset color
// On-click event: "click", set the color to highlight color
// Use bar = d3.select(this) and bar.classed("clicked", bar.classed("clicked")) to select clicked/unclicked bars

// Create the axes.
const gx = svg.append("g")
.attr("transform", `translate(0,${height - marginBottom})`)
.call(xAxis);
const gy = svg.append("g")
.attr("transform", `translate(${marginLeft},0)`)
.call(d3.axisLeft(y).tickFormat((y) => (y * 100).toFixed()))
.call(g => g.select(".domain").remove());

function update(order) {
// Get selected ordered data mapping
x.domain(data.sort(order).map(d => d.letter));
bar.data(data, d => d.letter)
.order()
.transition()
.duration(300)
.delay((d, i) => i * 80)
.attr("x", d => x(d.letter));
// TODO: Add animation to bars before setting new x positions of bars (.attr("x", d => x(d.letter)))
// Function you may need:
// trainsition(): normalizes the start and end values, and calculates all their in-between states
// duration(): set the duration of animation, let's set to 750 for the bar, feel free to explore
// delay(): set delays to objects, we can add a stagger effect to the bars
// TODO: Add a similar animation to x ticks before changing ticks (before .call(xAxis))
gx.transition()
.duration(300)
.call(xAxis);
};

// Return the chart, with an update function that takes as input a domain
// comparator and transitions the x axis and bar positions accordingly.
return Object.assign(svg.node(), {update});
}
Insert cell
update = chart.update(order)
Insert cell
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more