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="pivot-container"></div>

JavaScript

var pivot = new Flexmonster({
  container: "pivot-container",
  componentFolder: "https://cdn.flexmonster.com/",
  width: "100%",
  height: 430,
  toolbar: true,
  report: {
    dataSource: {
      data: [{}],
      mapping: {
        "itemID": {
          type: "number"
        },
        "price": {
          type: "number"
        },
        "color": {
          type: "string"
        },
        "country": {
          type: "string"
        }
      },
    },
    slice: {
      rows: {
        uniqueName: "itemID"
      },
      columns: {
        uniqueName: "price",
        uniqueName: "color",
        uniqueName: "country"
      }
    },
    options: {
      grid: {
        type: "flat"
      }
    }
  },
  global: {
    localization: {
      grid: {
        blankMember: ""
      }
    }
  },
});