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>

CSS

.highlight{
  background: #fdfd96 !important;
}

JavaScript

var pivot = new Flexmonster({
  container: "pivot-container",
  componentFolder: "https://cdn.flexmonster.com/",
  width: "100%",
  height: 430,
  toolbar: true,
  report: {
    "dataSource": {
      "type": "json",
      "data": [{
          "Category": {
            "type": "string"
          },
          "Price": {
            "type": "number"
          },
          "Discount": {
            "type": "number"
          }
        },
        {
          "Category": "Accessories",
          "Discount": 174
        },
        {
          "Category": "",
          "Price": 175,
          "Discount": 23
        },
        {
          "Category": "Cars",
          "Discount": 23
        }
      ]
    },
    "slice": {
      "rows": [{
        "uniqueName": "Category"
      }],
      "columns": [{
        "uniqueName": "[Measures]"
      }],
      "measures": [{
          "uniqueName": "Price",
          "aggregation": "sum"
        },
        {
          "uniqueName": "Discount",
          "aggregation": "sum"
        }
      ]
    }
  },
  customizeCell: customizeCellFunction
});

function customizeCellFunction(cell, data) {
  console.log(data)
  if (data.hierarchy && data.hierarchy.uniqueName === "Category" && data.label === "(blank)") {
    cell.addClass("highlight");
  }
}