Displays an organogram using a radial Reingold–Tilford tree
Download the latest release from https://github.com/timgentry/organogram/releases, extract the archive and then open the file dist/organogram.html
in a browser.
Or install it yourself by cloning the project, then execute:
$ yarn install
$ yarn start
Drag and drop an Excel (xlsx) spreadsheet anywhere on the page in the browser and you will be asked to specify the following fields, from the list of populated column names in the spreadsheet:
- Reference - column uniquely identifying staff members which is also used in the Reports To column, could be a ESR number, email adress, etc
- Reports To - column identifying the staff member's line manager
- Label - column identifying the staff member's label on the organogram, could be their name or role
- Pay Grade - column identifying the staff member's pay grade. The example currently copes with AfC and Civil Service pay grades.
- Size - column identifying the size of the staff member's dot on the organogram. Typically their WTE or weekly hours.
Once selected, click Generate to generate the organogram.
If successful, you will be able to download the organogram as an SVG or PDF (with a choice of page sizes).
- Fork it ( https://github.com/timgentry/organogram/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request