Row Hierarchy Drill Down
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>
<!--
1. Put the "Country" field above the "Item" hierarchy in the rows
2. Expand any row, e.g., "Australia"
* Note how the "Item" hierarchy rows are shown and we can further drill down
3. Now change the "Item" hierarchy to "Item/Category" in the Fields.
* Now, when we expand any row, e.g., "Australia", the Item/Category hiearchy does
not show and we cannot drill down.
4. Now change the "Item/Category" hiearchy to "Item/Color" in the Fields
* Now, when we expand any row, e.g., "Australia", the Item/Color does show
and we can further drill down
-->
JavaScript
new Flexmonster({
container: "#pivot-container",
componentFolder: "https://cdn.flexmonster.com/",
width: "100%",
height: 550,
toolbar: true,
report: {
"dataSource": {
"type": "api",
"url": "https://olap.flexmonster.com:9500",
"index": "fm-product-sales",
"mapping": {
"Category": {
"type": "string",
hierarchy: "Item"
},
"Color": {
"type": "string",
hierarchy: "Item",
parent: "Category"
},
"Size": {
"type": "string",
hierarchy: "Item",
parent: "Color"
}
}
},
"slice": {
"rows": [
{
"uniqueName": "Country"
},
{
"uniqueName": "[Item]",
"levelName": "Category"
}
],
"columns": [{
"uniqueName": "[Measures]"
}],
"measures": [{
"uniqueName": "Price",
"aggregation": "sum"
}],
"expands": {
"rows": [{
"tuple": [
"Country.[Australia]"
]
}]
}
}
}
});