in reply to Does 'Chart::Gnuplot ' support logarithmic axis (the gnuplot logscale setting)?

AnnL:

I've never used it, but the chart has a set() method, and gnuplot supports set logscale xy, so I'd guess that putting the following line before you plot your data would get the job done:

$chart->set( logscale=>'xy' );

...roboticus

Replies are listed 'Best First'.
Re^2: Does 'Chart::Gnuplot ' support logarithmic axis (the gnuplot logscale setting)?
by AnnL (Initiate) on Sep 21, 2010 at 19:56 UTC
    Thanks roboticus, your solution worked :)