in reply to State of the Ch(art) in Perl
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::GraphHope 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');
|
---|