One measure with different aggregations
Slice configuration
by Flexmonster Pivot Table
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: 430,
toolbar: true,
report: {
"dataSource": {
"filename": "data/sales.csv"
},
"slice": {
"rows": [
{
"uniqueName": "Month"
}
],
"columns": [
{
"uniqueName": "[Measures]"
}
],
"measures": [
{
"uniqueName": "Revenue",
"aggregation": "sum",
"format": "revenueFormat"
},
{
"uniqueName": "Revenue",
"aggregation": "average",
"format": "revenueFormat"
}
]
},
"formats": [
{
"name": "revenueFormat",
"decimalPlaces": 2,
"currencySymbol": "$"
}
]
}
});