sawtooth-chart
v0.1.1
Published
Sawtooth time-to-value chart helpers built on cumbin.
Downloads
47
Maintainers
Readme
sawtooth-chart
JavaScript package for the cumbin-backed sawtooth time-to-value transform.
import { sawtooth, sawtoothSvg } from "sawtooth-chart";
const rows = sawtooth(data, {
time: "date",
cumulative: "deaths",
binSize: 500,
groupBy: "country"
});
document.querySelector("#chart").innerHTML = sawtoothSvg(rows, {
time: "date",
cumulative: "deaths",
binSize: 500,
groupBy: "country"
});