Flexmonster - Connect to MS Analysis Services

Demos

by vmgtyler

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: {
			type: "microsoft analysis services",

			/* URL to msmdpump.dll */
			proxyUrl: "http://10.166.1.97/OLAP/msmdpump.dll",

			/* Catalog name */
			catalog: "Adventure Works DW Standard Edition",

			/* Cube name */
			cube: "Adventure Works"
		},
    "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
            }
        ]
    }
	}
});