ChartsCSS / charts.css

Open source CSS framework for data visualization.
https://ChartsCSS.org
MIT License
6.2k stars 176 forks source link

Improvement: replace flex with grid #45

Open ramiy opened 3 years ago

ramiy commented 3 years ago

Explore this new concept:

table {
  display: grid;
  grid-template:
    "heading  heading"
    "y-title  data"
    ".        x-title";
}

This can help introduce axis titles.

ramiy commented 3 years ago

Works with RTL and LTR.

TODO: check top-to-bottom languages...