API call sortingMethod

Slice configuration

by Ravi A

HTML

<link rel="stylesheet" href="https://s3.amazonaws.com/flexmonster/2.3/demo.css">
<script src="https://cdn.flexmonster.com/flexmonster.js"></script>

<button onclick="customSorting()">custom sorting</button>
<div id="pivot-container">The component will appear here</div>

JavaScript

var pivot = new Flexmonster({
	container: "pivot-container",
  componentFolder: "https://cdn.flexmonster.com/",
   toolbar: true,
  report: {
    dataSource: {
    	filename: "data/data.csv"
    }
  }
});
  
function customSorting() {
	flexmonster.sortingMethod("Category", function (a, b) {
      return a < b ? 1 : -1;
  });
}