1

Is it possible to create and render simple indent trees in C# using QuickGraph library?

Julien Roncaglia
  • 17,397
  • 4
  • 57
  • 75
Rella
  • 65,003
  • 109
  • 363
  • 636

1 Answers1

2

From the documentation:

QuickGraph itself does not provide graph layout or visualization algorithms. QuickGraph provides efficient brides between the data structures and existing graph layout libraries such as Graphviz, MsAgl, Glee

For an indent tree I suspect a graph is a bit of overkill. What is the reason you can't use simple object composition?

Steven Jeuris
  • 18,274
  • 9
  • 70
  • 161