Chartjs-How to put images/ charts into table?

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>

Leave a comment