yijunwu / bpmn-moddle-auto-layout

Layout a diagram without di

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bpmn-moddle-auto-layout

Get a layouted diagram of a bpmn-process without graphical representation.

bpmn-moddle-auto-layout is built on top of bpmn-moddle.

Usage

Preconditions: The diagram has to have exactly one single startevent. Up to now, elements with children are not supported.

var AutoLayout = require('./index');

var xmlWithoutDi = '<?xml version="1.0" encoding="UTF-8"?>' +
                      '<bpmn:definitions>' +
                          /*
                          see example.js for closer look at the
                          passed in xml
                          */
                      '</bpmn:definitions>';

var autoLayout = new AutoLayout();

autoLayout.layoutProcess(xmlWithoutDi);

Resources

License

Use under the terms of the MIT license.

About

Layout a diagram without di


Languages

Language:JavaScript 100.0%