GraphMore is a very simple flowchart drawing tool. Compared with other flowchart tools, GraphMore is faster in adding nodes and connections. GraphMore can also be used as a data visualization tool, and currently provides three different layout methods.
In order to make it easier for users to import data, graphMore has simplified the format to the extreme. If you only upload nodes, you can complete the data import by just setting the node title.
{ "nodes": [{ "title": "node01" }] }
If there are both nodes and connections, the nodes must have a title and id, and the id value must be unique.
{
"nodes": [ {"title": "node01","id": "1"}, {"title": "node02", "id": "2"} ],
"links": [ {"source": "1", "target": "2"} ]
}
AI generated diagram
AI generated diagram