Column Hiearchy

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 "Test" hierarchy into the columns
2. Expand out the column hierarchy all the way
  * Note that some of the cells are blank
3. Now put the "Test/Country" hierarchy into the columns
  * Note that some of the cells that were previously blank are now filled
-->

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"
        },
        "Country": {
        	"type": "string",
          hierarchy: "Test"
        },
        "Destination": {
        	"type": "string",
          hierarchy: "Test",
          parent: "Country"
        },
        "Business Type": {
        	"type": "string",
          hierarchy: "Test",
          parent: "Destination"
        }
      }
    },
    "slice": {
      "rows": [{
        "uniqueName": "Item"
      }],
      "columns": [{
        "uniqueName": "[Measures]"
      }],
      "measures": [{
        "uniqueName": "Price",
        "aggregation": "sum"
      }],
      "drills": {
        "rows": [{
          "tuple": [
            "item.[accessories]"
          ]
        }]
      }
    }
  }
});