Hi, Thanks for your reply so far before I leap and try using Gnuplot I'd like to describe my problem a bit better. Basically when I plot a graph the picture is positioned exactly at the center of the grid instead of being justified to the left. The alignment command is mis-configered. Looking closely the plot and and the x axis look to be center aligned. This is why I only included the code section that covers setting alignment. Thanks Toff
code snippet ... $my_graph = new GD::Graph::lines(500,400); $size = scalar @resTimes; my $skip = int ( $size / 7 ); $my_graph->set( x_label => 'Date', y_label => 'Price', title => 'Pair: '.$myFname. '-'.$mySname .' Cor= '.$aCorr . ' + Per= ' .$aPeriod, text => 'Line Graph', x_min_value => 0, y_min_value => 0, box_axis => 1, line_width => 1, x_label_skip => $skip, y_label_skip => 1, x_label_position => 1/2, y_label_position => 1/2, long_ticks => 1, transparent => 0, t_margin => 10, b_margin => 10, l_margin => 10, r_margin => 15, );

In reply to GD Graph plot centered by toff

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.