viewof slopeChart3 = {
const width = 800;
const height = 500;
const margin = { top: 50, right: 80, bottom: 50, left: 70 };
const svg = d3.create("svg")
.attr("width", width)
.attr("height", height);
const tooltip = d3.select("body")
.append("div")
.attr("class", "tooltip")
.style("position", "absolute")
.style("background", "rgba(0, 0, 0, 0.7)")
.style("color", "#fff")
.style("padding", "8px")
.style("border-radius", "4px")
.style("pointer-events", "none")
.style("opacity", 0);
const xMin = d3.min(data_plot1, d => d.preu - 2);
const xMax = d3.max(data_plot1, d => d.preu + 2);
const xScale = d3.scaleLinear()
.domain([xMin, xMax])
.range([margin.left, width - margin.right]);
const yQMin = d3.min(data_plot1, d => d.quantitat);
const yQMax = d3.max(data_plot1, d => d.quantitat);
const yScaleQ = d3.scaleLinear()
.domain([yQMin, yQMax])
.range([height - margin.bottom, margin.top])
.nice();
const yIMin = d3.min(data_plot1, d => d.ingressos);
const yIMax = d3.max(data_plot1, d => d.ingressos);
const yScaleI = d3.scaleLinear()
.domain([yIMin, yIMax])
.range([height - margin.bottom, margin.top])
.nice();
svg.append("text")
.attr("x", width / 2)
.attr("y", 20)
.attr("text-anchor", "middle")
.attr("font-size", 20)
.attr("font-weight", "bold")
.text("Store Revenue Trends (2020–2022)");
const legend = svg.append("g")
.attr("class", "legend")
.attr("transform", `translate(${width - margin.right - 100},${margin.top})`);
legend.append("rect")
.attr("x", 0)
.attr("y", 0)
.attr("width", 12)
.attr("height", 12)
.attr("fill", "steelblue");
legend.append("text")
.attr("x", 18)
.attr("y", 10)
.attr("font-size", 15)
.attr("font-weight", "bold")
.text("Sold");
legend.append("rect")
.attr("x", 0)
.attr("y", 20)
.attr("width", 12)
.attr("height", 12)
.attr("fill", "orange");
legend.append("text")
.attr("x", 18)
.attr("y", 30)
.attr("font-size", 15)
.attr("font-weight", "bold")
.text("Revenue");
svg.append("g")
.attr("transform", `translate(0,${height - margin.bottom})`)
.call(d3.axisBottom(xScale))
.append("text")
.attr("x", (width - margin.left - margin.right) / 2 + margin.left)
.attr("y", 40)
.attr("fill", "currentColor")
.attr("text-anchor", "middle")
.attr("font-size", 15)
.attr("font-weight", "bold")
.text("Price (USD)");
svg.append("g")
.attr("transform", `translate(${margin.left},0)`)
.call(d3.axisLeft(yScaleQ))
.append("text")
.attr("x", -margin.left + 10)
.attr("y", margin.top - 20)
.attr("fill", "currentColor")
.attr("text-anchor", "start")
.attr("font-size", 15)
.attr("font-weight", "bold")
.text("Pizza Sold");
svg.append("g")
.attr("transform", `translate(${width - (margin.right)},0)`)
.call(d3.axisRight(yScaleI))
.append("text")
.attr("x", 40)
.attr("y", margin.top - 20)
.attr("fill", "currentColor")
.attr("text-anchor", "end")
.attr("font-size", 15)
.attr("font-weight", "bold")
.text("Revenue (USD)");
const addTooltipEvents = selection => selection
.on("mouseover", (event, d) => {
tooltip.transition().duration(200).style("opacity", 0.9);
tooltip.html(`<strong>${d.pizza}</strong><br/>Sold: ${d.quantitat}<br/>Revenue: $${d.ingressos}`)
.style("left", (event.pageX + 10) + "px")
.style("top", (event.pageY - 28) + "px");
})
.on("mousemove", event => {
tooltip.style("left", (event.pageX + 10) + "px")
.style("top", (event.pageY - 28) + "px");
})
.on("mouseout", () => {
tooltip.transition().duration(500).style("opacity", 0);
});
svg.selectAll("line.slope-line")
.data(data_plot1)
.join("line")
.attr("class", "slope-line")
.attr("x1", d => xScale(d.preu))
.attr("y1", d => yScaleQ(d.quantitat))
.attr("x2", d => xScale(d.preu))
.attr("y2", d => yScaleI(d.ingressos))
.attr("stroke", "gray")
.attr("stroke-width", 2)
.attr("opacity", 0.7)
.call(addTooltipEvents);
svg.selectAll("circle.quantity-point")
.data(data_plot1)
.join("circle")
.attr("class", "quantity-point")
.attr("cx", d => xScale(d.preu))
.attr("cy", d => yScaleQ(d.quantitat))
.attr("r", 5)
.attr("fill", "steelblue")
.call(addTooltipEvents);
svg.selectAll("circle.ingressos-point")
.data(data_plot1)
.join("circle")
.attr("class", "ingressos-point")
.attr("cx", d => xScale(d.preu))
.attr("cy", d => yScaleI(d.ingressos))
.attr("r", 5)
.attr("fill", "orange")
.call(addTooltipEvents);
return svg.node();
}