I have been very impressed with ChartDirector, even though it costs $99. I'm trying to get my boss to pay for it. I've been using a trial version and am pleased with the results. I've also seen that they have great customer support.

I've also checked into a couple of very good Open Source modules:

SVG::TT::Graph
Changing the symbols is easy (for me anyway) Modifying the spacing between data points is very difficult (i.e. not starting our data directly on the y axis) This also outputs text as text elements, thus allowing me to generate PDFs generated from it in which the text is searchable.

Chart::Clicker
Modifying the spacing between data points is easy (i.e. not starting our data directly on the y axis) Changing the symbols is extremely difficult. Text is output as drawing commands. PDFs generated from the output will not have searchable text.

Hope this helps!

UPDATE:

ChartDirector works great for raster (e.g. PNG) or for SVG (i.e. vector) graphics.

I'm specifically working with SVG files. To output SVG using ChartDirector call the method enableVectorOutput() after creating the chart object, then use a file name ending in '.svg' when you output the file:

$chart_obj->enableVectorOutput(); . . . $chart_obj->makeChart('chart.svg');


In reply to Re: State of the Ch(art) in Perl by molecules
in thread State of the Ch(art) in Perl by doc_faustroll

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.