Export Code
Connected
index.js
import { max, select } from 'd3';
import { timeTable } from './data';
import { timePlot } from './timePlot';

const width = window.innerWidth;
const height = window.innerHeight;

const svg = select('#timeplot')
.append('svg')
.attr('width', width)
.attr('height', height);

const drawGraph = async () => {
svg.call(
timePlot()
.width(width)
.height(height)
.data(timeTable)
.xbValue((d) => d.beginGeldigheid)
.xeValue((d) => d.eindGeldigheid)
.ybValue((d) => d.tijdstipRegistratie)
.yeValue((d) => d.eindRegistratie)
.value((d) => d.value)
.margin({
top: 20,
right: 20,
bottom: 40,
left: 50,
})
);
};

drawGraph();

Fork of Fork of Time series - labels - change x,y

Bart van Pelt

Last edited Jan 19, 2023
Created on Jan 19, 2023

TimePlot

Example timeplots

MIT Licensed