1👍
As I understand you right, you simply asking how to do a grid
with 2 elemtents in each row
. If yes, you can use it like this:
<style scoped>
.wrapper {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 5px;
grid-auto-rows: minmax(100px, auto);
}
</style>
And the html
like this:
<div class="wrapper">
<div>Chart 1</div>
<div>Chart 2</div>
<div>Chart 3</div>
<div>Chart 4</div>
...
</div>
- Chartjs-Chartjs-plugin-zoom: get currently visible values when the page first loads
- Chartjs-How can plot graph using json data
Source:stackexchange.com