How about pushing your data into two seperate arrays?

Untested code follows:

#! perl -w use CGI ':standard'; use GD::Graph::Bars; use GD::Graph::Data; use DBI; my ($ym, $tc, @ym, @tc); my $SQL = "SELECT A.YM, SUM(A.TC)FROM A GROUP BY A.YM ORDER BY A.YM "; my $dbh = DBI->connect('dbi:DB2:DB2W',"$mf_id" , "$mf_pw", { PrintErro +r => 0}) || die $DBI::errstr); my $sth = $dbh->prepare($SQL) or die $dbh->errstr; $sth->execute() or die $sth->errstr; $sth->bind_columns(undef, \$ym, \$tc); while ($sth->fetch) { push(@ym, $ym); push(@tc, $tc); } my $data = GD::Graph::Data->new([\@ym, \@tc]); my $values = $data->copy; my $mygraph = GD::Graph::bars->new(800, 500); $mygraph->set( x_label => 'Month', y_label => 'Transactions', title => 'Number of Transactions per Month', show_values => 1, bar_spacing => 10, ) or warn $mygraph->error; my $myimage = $mygraph->plot($data) or die $mygraph->error; print "Content-type: image/png\n\n"; print $myimage->png;


In reply to Re: GD:GRAPH using DBI Data. by Mr. Muskrat
in thread GD::Graph using DBI Data. by jwherbold

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.