Classic Form
by Uaman23
HTML
<script src="https://s3.amazonaws.com/flexmonster/2.2-dev/flexmonster.js"></script>
<div id="pivot-content"></div>
JavaScript
flexmonster.embedPivotComponent("https://s3.amazonaws.com/flexmonster/2.2/", "pivot-content", "100%", "600", {
licenseKey: "Z53G-1T1WC3-1V1M-0L12-2M0A-1233-1I0Y-2Y2Q-1903-322S-0T2C-1I",
configuratorActive: false,
data: getData(),
rows: [{ uniqueName: "country" }, {uniqueName: "state" }, {uniqueName: "Color" }],
columns: [],
measures: [{ uniqueName: "Price"}],
classicView: true,
showTotals:false
}, true);
function getData() {
return [{
"Color": "green",
"country": "Canada",
"state": "Ontario",
"Price": 174
}, {
"Color": "red",
"country": "Canada",
"state": "Quebec",
"Price": 1190
}, {
"Color": "green",
"country": "USA",
"state": "California",
"Price": 1222,
}, {
"Color": "red",
"country": "Canada",
"state": "Ontario",
"Price": 6829,
}, {
"Color": "green",
"country": "Canada",
"state": "Quebec",
"Price": 2995,
}, {
"Color": "yellow",
"country": "Canada",
"state": "Ontario",
"Price": 6650,
}, {
"Color": "blue",
"country": "Canada",
"state": "Ontario",
"Price": 865,
}, {
"Color": "purple",
"country": "Spain",
"state": "Andalusia",
"Price": 511,
}, {
"Color": "blue",
"country": "Canada",
"state": "Quebec",
"Price": 981,
}, {
"Color": "blue",
"country": "Canada",
"state": "Ontario",
"Price": 284,
}];
}