JSFiddle - React, Tailwind, and code Playground

by planiurl

HTML

<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src="https://cdn.flexmonster.com/2.3/flexmonster.js"></script>

<div id="pivot-container"></div>

CSS

.fm-cell.fm-header.fm-row-header.fm-level-1.fm-h-sort.fm-empty.fm-expanded-area {
    border-bottom: 0px solid #EEEEEE !important;
    border-top: 0px solid #EEEEEE !important;
}

.fm-cell.fm-header.fm-row-header.fm-expanded.fm-h-sort {
    border-bottom: 0px solid #EEEEEE !important;
}

JavaScript

var pivot = $("#pivot-container").flexmonster({
  componentFolder: "https://cdn.flexmonster.com/2.3/",
  width: "100%",
  height: 430,
  toolbar: true,
  report: {
    dataSource: {
      dataSourceType: "json",
      data: getData(),
    },
    slice: {
      rows: [
        {uniqueName: "country"}, 
        {uniqueName: "state"},
        {uniqueName: "Color"}
      ],
      expands: {
      	expandAll: true
      },
      measures: [
        {
          uniqueName: "Price",
          aggregation: "sum"
        }
      ]
    },
    options: {
			configuratorActive: false, 
      grid: {
      	type: "classic"
      }
    }
  }
});

function getData() {
  return [{
    "Color": "green",
    "M": "September",
    "W": "Wed",
    "country": "Canada",
    "state": "Ontario",
    "city": "Toronto",
    "Price": 174,
    "Quantity": 22
  }, {
    "Color": "red",
    "M": "March",
    "W": "Mon",
    "Time": "1000",
    "country": "USA",
    "state": "California",
    "city": "Los Angeles",
    "Price": 1664,
    "Quantity": 19
  }, {
    "Color": "red",
    "M": "January",
    "W": "Mon",
    "country": "Canada",
    "state": "Quebec",
    "city": "Montreal",
    "Price": 1190,
    "Quantity": 292
  }, {
    "Color": "green",
    "D": "04/08/2014",
    "M": "August",
    "W": "Fri",
    "Time": "1000",
    "country": "USA",
    "state": "California",
    "city": "Los Angeles",
    "Price": 1222,
    "Quantity": 730
  }, {
    "Color": "white",
    "M": "March",
    "W": "Wed",
    "country": "USA",
    "state": "California",
    "city": "Los Angeles",
    "Price": 7941,
    "Quantity": 73
  }, {
    "Color": "red",
    "M": "August",
    "W": "Wed",
    "country": "Canada",
    "state": "Ontario",
    "city": "Toronto",
    "Price": 6829,
    "Quantity": 19
  }, {
    "Color": "green",
    "M": "January",
    "W": "Wed",
    "country": "Canada",
    "state": "Quebec",
    "city": "Montreal",
    "Price": 2995,
    "Quantity": 98
  }, {
    "Color": "white",
    "M":...