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>
JavaScript
new Flexmonster({
container: "#pivot-container",
componentFolder: "https://cdn.flexmonster.com/",
width: "100%",
height: 430,
toolbar: true,
report: {
"dataSource": {
"dataSourceType": "json",
"data": [
{
"Category": "cat1",
"term1": 10,
"term2": 15
},
{
"Category": "cat2",
"term1": 20,
"term2": 40
}
]
},
"slice": {
"rows": [
],
"columns": [
{
"uniqueName": "[Measures]"
}
],
"measures": [
{
"uniqueName": "term1",
"aggregation": "sum"
},
{
"uniqueName": "term2",
"aggregation": "sum"
}
]
},
"options": {
"viewType": "charts",
"chart": {
"multipleMeasures": true
},
"showAggregationLabels": false
}
}
});