Flexmonster Demo - Cost
by Iryna Kulchytska
HTML
<script src="https://s3.amazonaws.com/flexmonster/2.2/flexmonster.js"></script>
<div id="pivot-content"></div>
JavaScript
var jsondata = [{
"Item": "Item1",
"Tracking #": "A10000",
"Value": 4
}, {
"Item": "Item2",
"Tracking #": "A10000",
"Value": 4
}, {
"Item": "Item3",
"Tracking #": "A10000",
"Value": 4
}, {
"Item": "Item4",
"Tracking #": "A10001",
"Value": 7
}, {
"Item": "Item5",
"Tracking #": "A10000",
"Value": 4
}, {
"Item": "Item6",
"Tracking #": "A10001",
"Value": 7
}];
var report = {
configuratorActive: false,
data: jsondata,
viewType: "grid",
showGrandTotals: false,
rows: [{uniqueName: "Tracking #"}],
columns: [{uniqueName: "[Measures]"}],
measures: [{uniqueName: "Value", aggregation: "average"}]
};
report.licenseKey = "Z53G-1T1WC3-1V1M-0L12-2M0A-1233-1I0Y-2Y2Q-1903-322S-0T2C-1I";
flexmonster.embedPivotComponent("https://s3.amazonaws.com/flexmonster/2.2/", "pivot-content", "100%", "600", report, true);