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">The component will appear here</div>

JavaScript

var pivot = new Flexmonster({
  container: "pivot-container",
  componentFolder: "https://cdn.flexmonster.com/",
  toolbar: true,
  report: {
    dataSource: {
      type: 'api',
      url: 'https://olap.flexmonster.com:9500',
      index: 'fm-product-sales'
    },
    slice: {
      rows: [{
        uniqueName: "Category"
      }],
      measures: [{
        uniqueName: "Price"
      }]
    }
  }
});

pivot.on('reportcomplete', function() {
  alert('report complete!');
});