Number format for a specific measure

Number formatting

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

var pivot = new Flexmonster({
	container: "pivot-container",
  componentFolder: "https://cdn.flexmonster.com/",
  width: "100%",
  height: 430,
  toolbar: true,
  report: {
    dataSource: {
					    data: getData()
				    },
    formats: [
      {
        name: "",
        thousandsSeparator: ","
      },
      {
        name: "currency",
        currencySymbol: "$"
      },
      {
        name: "amount",
        decimalPlaces: 0,
        currencySymbol: " pcs.",
        currencySymbolAlign: "right"
      }
    ],
    slice: {
      rows: [
        { uniqueName: "Category" }
      ],
      measures: [
        {
          uniqueName: "Price", 
          aggregation: "sum", 
          active: true, 
          format: "currency" 
        },
        {
          uniqueName: "Discount", 
          aggregation: "sum", 
          active: false, 
          format: "currency" 
        },
        {
          uniqueName: "Quantity", 
          aggregation: "sum", 
          active: true,
          format: "amount" 
        }
      ]
    },
    options: {
    	showAggregationLabels: false
    }
  }
});

function getData() {
  return [{
    "Color": "green",
    "M": "September",
    "W": "Wed",
    "country": "Canada",
    "state": "Ontario",
    "city": "Toronto",
    "Price": null,
    "Quantity": 22
  }, {
    "Color": "red",
    "M": "March",
    "W": "Mon",
    "Time": "1000",
    "country": "USA",
    "state": "California",
    "city": "Los Angeles",
    "Price": 23,
    "Quantity": 19
  }];
}