JSFiddle - React, Tailwind, and code Playground

by Flexmonster Pivot Table

HTML

<link rel="stylesheet" href="https://s3.amazonaws.com/flexmonster/2.3/demo.css">
<script src="https://cdn.flexmonster.com/flexmonster.js"></script>

<div id="pivotContainer"></div>

JavaScript

var pivot = new Flexmonster({
  container: "pivotContainer",
  componentFolder: "https://cdn.flexmonster.com/",
  toolbar: true,
  report: {
    dataSource: {
      filename: "data/data.csv",
      mapping: {
        "Category": {
          "type": "string",
          "filters": false
        },
        "Size": {
          "type": "string"
        },
        "Color": {
          "type": "string"
        },
        "Destination": {
          "type": "string"
        },
        "Price": {
          "type": "number"
        },
        "Quantity": {
          "type": "number"
        }
      }
    },
    options: {
      grid: {
        type: "flat"
      }
    }
  }
});