Flexmonster - Flat Table

Demos

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/",
  report: {
    dataSource: {
      dataSourceType: "json",
      data: [
      	{ "date with time": {"type": "date string"},
        	"date without time": {"type": "date"}
        },
        ["2018-07-11 16:27:23.381","2018-07-11"]
      ]
    },
    options: {
      grid: {
        type: "flat"
      },
      configuratorActive: false
    },
    slice: {
      columns: [{
        uniqueName: "Country"
      }, {
        uniqueName: "Category"
      }, {
        uniqueName: "Color"
      }, {
        uniqueName: "Price"
      }, {
        uniqueName: "Discount"
      }]
    }
  },
  width: "100%",
  height: 370
});