JavaScript
var pivot = new Flexmonster({
container: "#pivot-container",
componentFolder: "https://cdn.flexmonster.com/",
toolbar: true,
report: {
dataSource: {
type: "json",
data: getData()
},
slice: {
rows: [{
uniqueName: "Category"
}, {
uniqueName: "[Measures]"
}],
measures: [{
uniqueName: "Price"
}, {
uniqueName: "Marker",
aggregation: "percentofrow"
}],
},
options: {
viewType: "charts",
chart: {
type: "column_line",
multipleMeasures: true
}
}
},
width: "100%",
height: 600
});
function getData() {
return [{
"Category": "Accessories",
"Size": "262 oz",
"Color": "red",
"Destination": "Australia",
"Business Type": "Specialty Bike Shop",
"Country": "Australia",
"Price": 174,
"Marker": 50,
"Discount": 23
}, {
"Category": "Accessories",
"Size": "214 oz",
"Color": "yellow",
"Destination": "Canada",
"Business Type": "Specialty Bike Shop",
"Country": "Canada",
"Price": 502,
"Marker": 50,
"Discount": 17
}, {
"Category": "Components",
"Size": "235 oz",
"Color": "green",
"Destination": "Australia",
"Business Type": "Warehouse",
"Country": "Australia",
"Price": 551,
"Marker": 50,
"Discount": 51
}, {
"Category": "Components",
"Size": "307 oz",
"Color": "white",
"Destination": "United Kingdom",
"Business Type": "Warehouse",
"Country": "Canada",
"Price": 842,
"Marker": 50,
"Discount": 55
}, {
"Category": "Bikes",
"Size": "334 oz",
"Color": "red",
"Destination": "United States",
"Business Type": "Value Added Reseller",
"Country": "Canada",
"Price": 738,
"Marker": 50,
"Discount": 28
}, {
"Category": "Bikes",
"Size": "107 oz",
"Color": "yellow",
"Destination": "Australia",
"Business Type": "Value Added Reseller",
...