JSFiddle - React, Tailwind, and code Playground

by Ian Sadovy

HTML

<script src="https://s3.amazonaws.com/flexmonster/2.2/flexmonster.js"></script>
<div id="pivot-content"></div>

JavaScript

var data = [
 {
   "legalentity": { type: "string" },
   "account": { type: "string" },
   "function": { type: "string" },
   "originator": { type: "string" },
   "currency": { type: "string" },
   "product": { type: "string" },
   "status": { type: "string" },
   "customer": { type: "string" },
   "formulaname": { type: "string" },
   "steps": { type: "string" },
   "amount": { type: "number" }
 }, {
   "legalentity": "U1",
   "account": "A2",
   "function": "FA2B2",
   "originator": "",
   "currency": "USD",
   "product": "P1",
   "status": "",
   "customer": "C2",
   "formulaname": "",
   "steps": "",
   "amount": 100
 }, {
   "legalentity": "U1",
   "account": "",
   "function": "",
   "originator": "",
   "currency": "",
   "product": "",
   "status": "",
   "customer": "",
   "formulaname": "expenses",
   "steps": "2",
   "amount": 700
 }];

 flexmonster.embedPivotComponent("https://s3.amazonaws.com/flexmonster/2.2/", "pivot-content", "100%", "600", {
     licenseKey: "Z53G-1T1WC3-1V1M-0L12-2M0A-1233-1I0Y-2Y2Q-1903-322S-0T2C-1I",
     configuratorActive: false,
     data: data,
     flatView: true
   },
   true);