Export Code
Connected
scatterPlot.js
import {
scaleLinear,
extent,
axisLeft,
axisBottom,
transition,
} from 'd3';

export const scatterPlot = () => {
let width;
let height;
let data;
let xValue;
let yValue;
let xLabel;
let margin;
let radius;

const my = (selection) => {
const x = scaleLinear()
.domain(extent(data, xValue))
.range([margin.left, width - margin.right]);

const y = scaleLinear()
.domain(extent(data, yValue))
.range([height - margin.bottom, margin.top]);

const marks = data.map((d) => ({
x: x(xValue(d)),
y: y(yValue(d)),
}));

const t = transition().duration(1000);

const circles = selection
.selectAll('circle')

[idempotent axis labels] Fork of Animated Reusable D3 Scatter Plot

Matt

Last edited May 22, 2021
Created on May 22, 2021

A reusable scatter plot inspired by Towards Reusable Charts.

Shows the Iris Dataset.

MIT Licensed