Table
The Table module allows you to make tables of data.
Table.make
Table.make: ({
data: list<'a>,
title?: string,
columns: list<{
name?:string,
fn: 'a => any
}>
}) => table
Examples:
You can hardcode the scales to make the xAxis consistent between rows.