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: 600,
toolbar: true,
report: {
dataSource: {
dataSourceType: "microsoft analysis services",
/* URL to msmdpump.dll */
proxyUrl: "http://olap.flexmonster.com:8085",
/* Catalog name */
catalog: "Adventure Works DW Standard Edition",
/* Cube name */
cube: "Adventure Works",
binary: true
},
"slice": {
"rows": [
{
"uniqueName": "[Geography].[Geography]",
"sort": "asc"
}
],
"columns": [
{
"uniqueName": "[Product].[Category]",
"sort": "asc"
},
{
"uniqueName": "[Measures]"
}
],
"measures": [
{
"uniqueName": "[Measures].[Reseller Order Count]",
"aggregation": "none",
"active": true
},
{
"uniqueName": "[Measures].[Discount Amount]",
"aggregation": "none",
"active": true
}
]
}
}
});