Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#!/usr/bin/perl ############################################################ # Author Joseph Harnish big_joe1008@yahoo.com # # Date 5/1/2001 # # # # This script is a wrapper for GD::Graph::Bars for use on# # web pages. It is a quicky that is used inside of an # # IFRAME. # # # # Usage: bargraph.pl?cols=A,B,C&vals=1,2,3 # # It is required to have a "cols" and a "vals" but there # # are options you can also add. These options are: # # title # # ylabel # # xlabel # ############################################################ use GD::Graph::bars; use CGI; use strict; my $q = new CGI; my $cols = $q->param("cols"); my $title = $q->param("title"); my $vals = $q->param("vals"); my $xlabel = $q->param("xlabel"); my $ylabel = $q->param("ylabel"); my @col = split(/\,/, $cols); my @val = split(/\,/, $vals); if($#col != $#val){ print $q->header; print "<b><h1>Error: Parameters are not ballanced</h1></b>"; exit; } my @data = ( [@col], [@val] ); my $graph = new GD::Graph::bars(400,300); if($title ne ''){ $graph->set(title => "$title"); } if($ylabel ne ''){ $graph->set(y_label => "$ylabel"); } if($xlabel ne ''){ $graph->set(x_label => "$xlabel"); } $graph->set(cycle_clrs => 'TRUE', bar_spacing => '10', legend_placement => 'RB' ); $graph->set_values_font('ARIAL.TTF', 24); $graph->set_legend_font('ARIAL.TTF', 24); $graph->set_x_label_font('ARIAL.TTF', 24); $graph->set_y_label_font('ARIAL.TTF', 24); print $q->header("image/png"); binmode STDOUT; print $graph->plot(\@data)->png;

In reply to CGI bar-graph maker by BigJoe

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (4)
As of 2024-04-24 12:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found