JSFiddle - React, Tailwind, and code Playground

by Flexmonster Pivot Table

HTML

<link rel="stylesheet" href="https://cdn.flexmonster.com/2.3/demo.css">
<script src="https://cdn.flexmonster.com/flexmonster.js"></script>

<button onclick="deleteRecord()">Delete one record</button>

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

CSS

h2 {
  text-align: center;
}

p {
  font-size: 15px;
  line-height: 1.5;
  padding-right: 10px;
  padding-left: 10px;
}

a {
  color: #00a45a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

code {
    font-size: 105%;
    color: #DF3800;
    background-color: #f5f5f5;
    padding: 1px 4px;
    font-family: monospace !important;
    border-radius: 4px;
}

JavaScript

let pivot = new Flexmonster({
  container: "pivot-container",
  componentFolder: "https://cdn.flexmonster.com/",
  width: "100%",
  toolbar: true,
  height: 600,
  global: {
    localization: "loc/it.json"
  },
  report: {
    localization: {
      "grid": {
        "blankMember": "",
      }
    },
    dataSource: {
      data: getData(),
      mapping: {
        "Category": {
          type: "string"
        },
        "Price": {
          type: "number"
        },
        "RowId": {
          type: "id"
        }
      }
    },
    "slice": {
      "rows": [{
          "uniqueName": "Category",
        },
        {
          "uniqueName": "Color"
        }
      ],
      "columns": [{
        "uniqueName": "[Measures]"
      }],
      "measures": [{
        "uniqueName": "Price",
        "aggregation": "sum"
      }],
      "expands": {
        expandAll: true
      }
    },
  }
});

function deleteRecord() {
  let dataForUpdate = [{
    "RowId": 3,
    "Category": "Clothing",
    "Price": 10
  }]
  flexmonster.updateData({
    data: dataForUpdate
  }, {
    partial: true
  });
}

function getData() {
  return [{
      "Category": "Accessories",
      "Price": 242,
      "Color": "blue",
      "RowId": 1
    },
    {
      "Category": "Bikes",
      "Color": "blue",
      "Price": 1487,
      "RowId": 2
    },
    {
      "Category": "Clothing",
      "Color": "blue",
      "Price": 40,
      "RowId": 3
    }
  ]
}