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

new Flexmonster({
  container: "#pivot-container",
  componentFolder: "https://cdn.flexmonster.com/",
  width: "100%",
  height: 600,
  toolbar: true,
  report: {
    "dataSource": {
      "type": "elasticsearch",
      "node": "https://olap.flexmonster.com:9200",
      "index": "kibana_sample_data_flights",
      mapping: {
        timestamp: {
          caption: "Month",
          interval: "1M",
          format: "MMMM"
        }
      }
    },
    "slice": {
      "rows": [{
        "uniqueName": "timestamp"
      }],
      "columns": [{
        "uniqueName": "[Measures]"
      }],
      "measures": [{
        "caption": "Flight Time",
        "uniqueName": "FlightTimeMin",
        "aggregation": "sum",
        "format": "-xhip5eho1dv00"
      }]
    },
    "formats": [{
      "name": "-xhip5eho1dv00",
      "decimalPlaces": 0
    }]
  }
});