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


in reply to Creating Pie chart based graph network

G'day KuntalBhusan,

For creating pie charts in a Tk::Canvas, you'll probably want to use $canvas->createArc(...) with various options, including -style => 'pieslice'. See Tk::Canvas: ARC ITEMS.

I'm not really sure what you have in mind with respect to a "graph network". Tk::Canvas: LINE ITEMS seems like the obvious choice; however, you're also talking about cross-linking, so perhaps that's not what you want. You'll need to clarify what you mean in this regard.

-- Ken