with localization

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/",
  toolbar: false,
  report: {
    dataSource: {
      type: "json",
      data: getData(),
      "mapping": {
            "Org_key_name": {
                "type": "string"
            },
            "ScenarioName": {
                "type": "string"
            },
            "Year": {
                "type": "number"
            },
            "Actual": {
                "type": "number"
            },
            "Actual-1": {
                "type": "number"
            },
            "month": {
                "type": "number"
            },
            "Amount": {
                "type": "number"
            },
            "Firstlevel": {
                "type": "string",
                "hierarchy": "Firstlevel"
            },
            "SecondLevel": {
                "type": "string",
                "hierarchy": "Firstlevel",
                "parent": "Firstlevel"
            },
            "Child_desc": {
                "type": "string",
                "hierarchy": "Firstlevel",
                "parent": "SecondLevel"
            },
            "accoPLANNINGId": {
                "type": "id"
            }
        }
    },
    "options": {
        "grid": {
            "type": "compact",
            "showFilter": false,
            "dragging": false,
            "showReportFiltersArea": false,
            "showTotals": "on",
            "showGrandTotals": "on",
            "showHeaders": false,
            "showHierarchies": false
        },
        "drillThrough": false,
        "configuratorButton": false,
        "caseSensitiveMembers": true,
        "showEmptyValues": true,
        "sorting": "on",
        "datePattern": "yyyy-MM-dd",
        "timePattern": "HH:mm",
        "dateTimePattern": "yyyy-MM-dd'T'HH:mm"
    },
    "localization": {
        "grid": {
            "dateInvalidCaption": "",
            "blankMember": ""
      ...