Chart Library in Lua

Is there a Lua library (or with Lua bindings) for plotting (directional / non-oriented), with traversal algorithms, connectivity testing, and other basic graph operations?

+3
source share
1 answer

The LuaGRAPH library is a Lua binding to GraphViz that can meet your needs.

Features

  • Define graphs using Lua syntax elements (tables, functions)
  • Layout and rendering graphs
  • Iterators for subgraphs, nodes, and edges
  • Set and get for all graphviz attributes for graphs, nodes and edges
  • ( )
+3

Source: https://habr.com/ru/post/1755685/


All Articles