PATH:
home
/
letacommog
/
crmleta
/
layouts
/
v7
/
modules
/
Settings
/
ITS4YouProcessFlow
/
src
export class FlowchartyMap { constructor(private _map: (string)[][]) { } /** * get column count * @returns {number} */ public getColumnCount(): number { return Math.max.apply(this, this._map.map((nodes) => (nodes.length))); } /** * get row count * @returns {number} */ public getRowCount(): number { return this._map.length; } /** * get all rows * @returns {string[][]} */ public getRows(): (string)[][] { return this._map; } }
[+]
..
[-] canvas.ts
[edit]
[-] node_factory.ts
[edit]
[-] node.ts
[edit]
[-] map.ts
[edit]
[-] link.ts
[edit]
[-] settings.ts
[edit]
[-] link_factory.ts
[edit]
[-] elements.ts
[edit]
[-] flowcharty.ts
[edit]