Flexmonster - Connect to MS Analysis Services

Demos

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>

CSS

#fm-fields-view {
  height: 550px;
}

#fm-pivot-view #fm-fields-view .fm-popup-content .fm-ui-col-3 {
    height: 460px !important;
}

JavaScript

new Flexmonster({
  container: "#pivot-container",
  componentFolder: "https://cdn.flexmonster.com/2.4/",
  width: "100%",
  height: 400,
  toolbar: true,
	report: {
		dataSource: {
			dataSourceType: "microsoft analysis services",

			/* URL to msmdpump.dll */
			proxyUrl: "https://olap.flexmonster.com/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
            }
        ]
    }
	}
});