I have data from transactions stored in an Oracle database, and I am looking for the best method to display this information as flowcharts on a webpage.
Here is a sample of the data in tables:
txn1|sourcesys
txn1|system1
txn1|system2
txn1|system3
txn1|endsys
I would like to visualize this data in a graphical user interface using a flowchart diagram.
From my initial research, Angular JS with Flot seems promising. Are there any other simple and open-source libraries you could recommend for achieving this?
Thank you.