charts.css
charts.css copied to clipboard
Improvement: replace flex with grid
Explore this new concept:
table {
display: grid;
grid-template:
"heading heading"
"y-title data"
". x-title";
}
This can help introduce axis titles.
Works with RTL and LTR.
TODO: check top-to-bottom languages...