ErickRuano / angular-pivot

Angular wrapper for Nicolas Kruchten's Pivot Table
MIT License
15 stars 12 forks source link

angular-pivottable

Angular wrapper for Nicolas Kruchten's Pivot Table.

Kruchten's

Usage :

$scope.data = [
    {color: "blue", shape: "circle"},
    {color: "red", shape: "triangle"}
];

$scope.options = {
    rows: ["color"],
    cols: ["shape"]
};