Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.
/ orb Public archive
forked from nnajm/orb

Pivot table javascript library

License

Notifications You must be signed in to change notification settings

CavalloSolutions/orb

This branch is 5 commits ahead of, 1 commit behind nnajm/orb:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

dd4027b · Dec 7, 2017

History

82 Commits
Dec 6, 2017
Jan 5, 2015
Dec 7, 2017
Dec 6, 2017
Jan 2, 2015
Nov 16, 2014
Dec 25, 2014
Dec 19, 2014
Jun 28, 2015
Dec 7, 2017
Dec 5, 2017

Repository files navigation

Pivot grid javascript library.

Website: orbjs.net

Latest version: 1.0.9 (Release notes)

cdnjs: https://cdnjs.com/libraries/orb

Demo:

Demo

Features

Interactivity

  • Drag'n'drop to move fields
  • Click to sort
  • Visual filters
  • Drill down (cell double click)
  • Multiple data fields support
  • Grand totals & Sub totals
  • Sub totals expand/collapse
  • Enhanced scrolling (fixed headers)
  • Export to Excel (new in 1.0.9)
  • Fast rendering using React

Customization

  • Via code and/or toolbar
  • Data headers location
  • Grand totals visibility
  • Sub totals visibility & collapsed state
  • Data cells aggregate & format functions
  • Theming: built-in & Bootstrap

Data query

Query aggregation results with a simple API:

var orb = require('orb');
var pgrid = new orb.pgrid(config);

// query
var q = pgrid.query()
             .Manufacturer('Adventure Works')
             .Class('Economy');

1 field

q.Amount()

=> 1185.17 

List of fields

q.val('Amount', 'Q')

=> {
     Amount: 1185.17,
     Q: 44
   }

Aggregation func

builtin

q.stdev('Amount', 'Q');

=> {
     Amount: 1377.58,
     Q: 3.9
   }

custom

q.val({
    // count
    aggregateFunc: function(datafield, intersection, datasource) {
        return intersection.length;
    },
    fields: ['Amount', 'Q']
});

=> {
     Amount: 7,
     Q: 7
   }

Licence

MIT

About

Pivot table javascript library

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 93.5%
  • CSS 6.5%