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/2.4/flexmonster.js"></script>
<div id="pivot-container"></div>
JavaScript
var pivot = new Flexmonster({
container: "#pivot-container",
componentFolder: "https://cdn.flexmonster.com/2.4/",
report: {
dataSource: {
dataSourceType: "json",
data: getData()
},
slice: {
rows: [{
uniqueName: "[Measures]"
}],
columns: [],
measures: [{
uniqueName: "value",
aggregation: "average"
}],
},
options: {
configuratorActive: false
}
},
width: "100%",
height: 370
});
function getData() {
return [{
value: {
type: "number"
}
}, {
value: null
}, {
value: 6
}, {
value: 6
}];
}