Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
In the actual gnuplot program you can say e.g. set label "Yield Point" at 0.003,260, however if I try this within the perl script I just get errors. Has anyone tried to do this before and could help??
Thanks!
my code is below:
gnuplot({"title" => "test", "x-axis label" => "axis1", "y-axis label" => "axis2", #"logscale x2" => "1", #"logscale y" => "1", "output type" => "png", "output file" => "gnuplot2.png", "extra_opts" => "set label" }, # want to put @names in here + somewhere [{"title" => "", "type" => "columns"}, \@x, \@y], );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Chart::Graph::Gnuplot problems
by rg0now (Chaplain) on Feb 14, 2005 at 19:48 UTC |