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://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

/* GRID */

#fm-grid-view span,
#fm-grid-view div,
#fm-grid-view td {
	font-family: Verdana !important;
}

.fm-sheet-header {
	background-color: #A4D53A !important;
}

.fm-header {
	background-color: #263C53 !important;
}

.fm-cell {
	border: 1px solid #DDDDDD !important;
}

.fm-total {
	color: #263C53 !important;
	text-decoration: underline;
}

/* Alternating rows */
#fm-grid-view tr:nth-child(2n+1) {
	background-color: #EEEEEE !important;
}

/* Alternating columns */
/*#fm-grid-view td:nth-child(2n+1):not(.fm-header):not(.fm-sheet-header) {
	background-color: #EEEEEE !important;
}*/

.fm-sheet-selection-canvas {
	background-color: rgba(72, 151, 241, 0.2) !important;
}

	.fm-sheet-selection-canvas .fm-border {
		border: 1px solid #4897F1 !important;
	}

/* CHARTS */

.fm-charts-color-1 {
    fill: #A4D53A !important;
}

.fm-charts-color-2 {
    fill: #263C53 !important;
}

.fm-charts-color-3 {
    fill: #4897F1 !important;
}

.fm-charts-color-4 {
    fill: none !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()
    },
    options: {
			configuratorActive: false
    }
  }
});

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": "February",
    "W": "Mon",
    "country": "USA",
    "state": "California",
    "city": "Los Angeles",
    "Price": 2471,
    "Quantity": 93
  }, {
    "Color": "yellow",
    "M": "March",
    "W": "Fri",
    "country": "Canada",
    "state": "Ontario",
    "city": "Toronto",
    "Price": 6650,
    "Quantity": 40
  }, {
    "Color":...