Thanks to visit codestin.com
Credit goes to github.com

Skip to content

partrickli/ExcelToGraphviz

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ExcelToGraphviz

Tool for converting excel sheet to graphviz format.

Quick Start

With data.xlsx in the root path as follows: data

go to the root path in terminal, and run:

npm run convert

Topology will be opened in default pdf reader.

Watch mode

npm run watch:data

Any change on ./data.xlsx will be reflected on pdf which will be automatically opened on default pdf reader.

Input data

The excel file contains lines, which describing link between nodes. data

Excecute command as follows.

node convert.js data.xlsx

The second argument work as input link data source. data.xlsx

Output graphviz dot file

digraph {
    rankdir=LR
    A -> B
    A -> C
    B -> X
    B -> Y
    B -> Z
    C -> O
    C -> P
    C -> Q
}

Output Image

graphviz

About

Tool for converting excel sheet to graphviz format.

Topics

Resources

Stars

2 stars

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors