hmadhi has asked for the wisdom of the Perl Monks concerning the following question:
my $chart = Chart::Gnuplot->new( output => "/home/hmadhi/workspace/CommsNet/www/Plots/$kpi.png" +, title => {text=>"$kpi Success Rate on $node/$ran ($interface) + $date", }, xlabel => {text=>"Time",}, ylabel => "$kpi Succ_Rate", timeaxis => "x", ); # Create dataset object and specify the properties of the dataset my $dataSet1 = Chart::Gnuplot::DataSet->new( xdata => \@time, ydata => \@succ_rate, timefmt => '%H:%M', );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Chart::Gnuplot Time Axis output
by broomduster (Priest) on Mar 10, 2011 at 22:23 UTC | |
by hmadhi (Acolyte) on Mar 11, 2011 at 05:07 UTC |