|
Howdy,
Using Perl v5.8.5,
# $Id: Graph.pm,v 1.53 2003/07/01 04:56:57 mgjv Exp $
$GD::Graph::VERSION = '1.43';
I can successfully create a graph with 2 axes using 2 datasets
...
@data1 = (\@xDate,\@inst_100,\@actp_100);
$graph->set(
...
y_long_ticks => 1,
two_axes => 1,
use_axis => [1,2],
title => "Test"
);
but when I add more data sets, it reverts to one axis.
@data1 = (\@xDate,\@inst_100,\@actp_100,\@inst_10);
...
$graph->set(
...
y_long_ticks => 1,
two_axes => 1,
use_axis => [1,2,1],
title => "Test"
);
Thanks, Do Regocijaos siempre.
|