http://www.perlmonks.org?node_id=1004398

sathish_cudd has asked for the wisdom of the Perl Monks concerning the following question:

Hi guys, I want to create a hierarchical chart in Perl is there any possibility to create a chart?
ex: |->C A->B-| |->D
I'm not interested in text charting, need something graphical.

Replies are listed 'Best First'.
Re: Hierarchical chart
by Anonymous Monk on Nov 18, 2012 at 12:39 UTC
    Even though there are many chart modules on cpan, even interfaces to graphviz, :)
Re: Hierarchical chart
by Sinistral (Monsignor) on Nov 19, 2012 at 16:20 UTC

    Check out the post Dumping trees to a console. that BrowserUK created that takes a Perl tree structure and creates an ASCII representation of it.

    Update: Didn't spot the OP's request for something graphical, not textual. Leaving my original answer, and actually addressing the request for graphics, the use of google chart modules could be quite useful

      OP says I'm not interested in text charting, need something graphical.