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/",
  height: 350,
  toolbar: true,
  global: {
    options: {
       validateReportFiles: false
    }
  },
  report: {
    dataSourceType: "microsoft analysis services",
    /* URL to msmdpump.dll */
    proxyUrl: "https://olap.flexmonster.com/olap/msmdpump.dll",
    /* Catalog name */
    catalog: "Adventure Works DW Standard Edition",
    /* Cube name */
    cube: "Adventure Works",

    rows: [
      {
        uniqueName: "[Geography].[Geography]",
        sort: "asc"
      }
    ],
    columns: [
      {
        uniqueName: "[Product].[Category]",
        sort: "asc"
      },
      {
        uniqueName: "[Measures]"
      }
    ],
    measures: [
      {
        uniqueName: "[Measures].[Reseller Order Count]",
        aggregation: "none",
        active: true
      },
      {
        uniqueName: "[Measures].[Discount Amount]",
        aggregation: "none",
        active: true
      }
   ]
  }
}
);