pivot() demo Statues Summery

https://github.com/nicolaskruchten/pivottable

by suraj mahajan

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/pivottable/2.13.0/pivot.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/pivottable/2.13.0/pivot.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/pivottable/2.6.0/tips_data.min.js"></script>
<div id="output"></div>

CSS

body {
  font-family: Verdana;
}

JavaScript

$("#output").pivot(
    [
        {country:'india',state: "maha", dist: "kolhapur",statueof:'shivaji',count:14,type:'clone'},
        {country:'india',state: "maha", dist: "kolhapur",statueof:'babaji',count:28,type:'men'},
        {country:'india',state: "maha", dist: "kolhapur",statueof:'shivaji',count:4,type:'men'},
        {country:'india',state: "maha", dist: "kolhapur",statueof:'babaji',count:5,type:'clone'},
        {country:'india',state: "maha", dist: "sangli",statueof:'shivaji',count:15,type:'clone'},
        {country:'india',state: "maha", dist: "hat",statueof:'shivaji',count:02,type:'clone'},
        {country:'india',state: "maha", dist: "karveer",statueof:'shivaji',count:28,type:'men'},
        {country:'india',state: "maha", dist: "chandgarh",statueof:'shivaji',count:30,type:'clone'},
        {country:'india',state: "andhra", dist: "yatakota",statueof:'babaji',count:20,type:'clone'},
        {country:'india',state: "andhra", dist: "maahota",statueof:'babaji',count:12,type:'men'},
        {country:'Jarman',state: "andhra", dist: "vasota",statueof:'shivaji',count:23,type:'clone'}
        
    ],
    {
        rows: ["country","state"],
        cols: ["dist","statueof","type"],
        vals:["count"],
        rendererName: "Heatmap",
        aggregatorName: "Sum"
    }
);