home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _ce5def300876ed154fb529cdc7ea1999 < prev    next >
Text File  |  2000-03-23  |  24KB  |  560 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Chart - a series of charting modules</TITLE>
  5. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> Chart - a series of charting modules</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <UL>
  26.  
  27.         <LI><A HREF="#useing chart">use-ing Chart</A></LI>
  28.         <LI><A HREF="#getting an object">Getting an object</A></LI>
  29.         <LI><A HREF="#setting different options">Setting different options</A></LI>
  30.         <LI><A HREF="#gifgraph.pmstyle api">GIFgraph.pm-style API</A></LI>
  31.         <LI><A HREF="#graph.pmstyle api">Graph.pm-style API</A></LI>
  32.         <LI><A HREF="#imagemap support">Imagemap Support</A></LI>
  33.     </UL>
  34.  
  35.     <LI><A HREF="#to do">TO DO</A></LI>
  36.     <LI><A HREF="#bugs">BUGS</A></LI>
  37.     <LI><A HREF="#author">AUTHOR</A></LI>
  38.     <LI><A HREF="#maintainer">MAINTAINER</A></LI>
  39.     <LI><A HREF="#copyright">COPYRIGHT</A></LI>
  40. </UL>
  41. <!-- INDEX END -->
  42.  
  43. <HR>
  44. <P>
  45. <H1><A NAME="name">NAME</A></H1>
  46. <P>Chart - a series of charting modules</P>
  47. <P>
  48. <HR>
  49. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  50. <UL>
  51. <LI>Linux</LI>
  52. <LI>Windows</LI>
  53. </UL>
  54. <HR>
  55. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  56. <PRE>
  57.     use Chart::type;</PRE>
  58. <PRE>
  59.     $obj = Chart::type->new;
  60.     $obj = Chart::type->new ( $gif_width, $gif_height );
  61. </PRE>
  62. <PRE>
  63.  
  64.     $obj->set ( $key_1, $val_1, ... ,$key_n, $val_n );
  65.     $obj->set ( $key_1 => $val_1,
  66.                 ...
  67.                 $key_n => $val_n );
  68.     $obj->set ( %hash );</PRE>
  69. <PRE>
  70.     # GIFgraph.pm-style API
  71.     @data = ( \@x_tick_labels, \@dataset1, ... , \@dataset_n );
  72.     $obj->gif ( "filename", \@data );
  73.     $obj->gif ( $filehandle, \@data );
  74.     $obj->gif ( FILEHANDLE, \@data );
  75.     $obj->cgi_gif ( \@data );</PRE>
  76. <PRE>
  77.     # Graph.pm-style API
  78.     $obj->add_pt ($label, $val_1, ... , $val_n);
  79.     $obj->add_dataset ($val_1, ... , $val_n);
  80.     $obj->gif ( "filename" );
  81.     $obj->gif ( $filehandle );
  82.     $obj->gif ( FILEHANDLE );
  83.     $obj->cgi_gif ();</PRE>
  84. <PRE>
  85.     # Retrieve imagemap information
  86.     $obj->set ( 'imagemap' => 'true' );
  87.     $imagemap_ref = $obj->imagemap_dump ();</PRE>
  88. <P>
  89. <HR>
  90. <H1><A NAME="description">DESCRIPTION</A></H1>
  91. <P>This module is an attempt to build a general purpose graphing module
  92. that is easily modified and expanded.  I borrowed most of the API
  93. from Martien Verbruggen's GIFgraph module.  I liked most of GIFgraph,
  94. but I thought it was to difficult to modify, and it was missing a few
  95. things that I needed, most notably legends.  So I decided to write
  96. a new module from scratch, and I've designed it from the bottom up
  97. to be easy to modify.  Like GIFgraph, Chart uses Lincoln Stein's GD 
  98. module for all of its graphics primitives calls.</P>
  99. <P>
  100. <H2><A NAME="useing chart">use-ing Chart</A></H2>
  101. <P>Okay, so you caught me.  There's really no Chart::type module.
  102. All of the different chart types (Points, Lines, Bars, LinesPoints, Pie,
  103. Composite, StackedBars, and Pareto so far) are classes by themselves, each
  104. inheriting a bunch of methods from the Chart::Base class.  Simply replace
  105. the word type with the type of chart you want and you're on your way.  
  106. For example,
  107. </P>
  108. <PRE>
  109.  
  110.   use Chart::Lines;</PRE>
  111. <P>would invoke the lines module.</P>
  112. <P>
  113. <H2><A NAME="getting an object">Getting an object</A></H2>
  114. <P>The new method can either be called without arguments, in which
  115. case it returns an object with the default image size (400x300 pixels),
  116. or you can specify the width and height of the image.  Just remember
  117. to replace type with the type of graph you want.  For example,</P>
  118. <PRE>
  119.   $obj = Chart::Bars (600,400);</PRE>
  120. <P>would return a Chart::Bars object containing a 600x400 pixel
  121. image.  New also initializes most of the default variables, which you 
  122. can subsequently change with the set method.</P>
  123. <P>
  124. <H2><A NAME="setting different options">Setting different options</A></H2>
  125. <P>This is where the fun begins.  Set looks for a hash of keys and
  126. values.  You can pass it a hash that you've already constructed, like</P>
  127. <PRE>
  128.   %hash = ('title' => 'Foo Bar');
  129.   $obj->set (%hash);
  130. </PRE>
  131. <PRE>
  132.  
  133. or you can try just constructing the hash inside the set call, like</PRE>
  134. <PRE>
  135.   $obj->set ('title' => 'Foo Bar');</PRE>
  136. <P>The following are all of the currently supported options:</P>
  137. <DL>
  138. <DT><STRONG><A NAME="item_%27transparent%27">'transparent'</A></STRONG><BR>
  139. <DD>
  140. Makes the background of the image transparent if set to 'true'.  Useful
  141. for making web page images.  Default is 'false'.
  142. <P></P>
  143. <DT><STRONG><A NAME="item_%27gif_border%27">'gif_border'</A></STRONG><BR>
  144. <DD>
  145. Sets the number of pixels used as a border between the graph
  146. and the edges of the gif.  Defaults to 10.
  147. <P></P>
  148. <DT><STRONG><A NAME="item_%27graph_border%27">'graph_border'</A></STRONG><BR>
  149. <DD>
  150. Sets the number of pixels used as a border between the title/labels
  151. and the actual graph within the gif.  Defaults to 10.
  152. <P></P>
  153. <DT><STRONG><A NAME="item_%27text_space%27">'text_space'</A></STRONG><BR>
  154. <DD>
  155. Sets the amount of space left on the sides of text, to make it more
  156. readable.  Defaults to 2.
  157. <P></P>
  158. <DT><STRONG><A NAME="item_%27title%27">'title'</A></STRONG><BR>
  159. <DD>
  160. Tells GD graph what to use for the title of the graph.  If empty,
  161. no title is drawn.  It recognizes '\n' as a newline, and acts accordingly.
  162. Default is empty.
  163. <P></P>
  164. <DT><STRONG><A NAME="item_%27sub_title%27">'sub_title'</A></STRONG><BR>
  165. <DD>
  166. Deprecated, left in for backwards-compatibility.  This option will probably
  167. be taken out of the next release.
  168. <P></P>
  169. <DT><STRONG><A NAME="item_%27x_label%27">'x_label'</A></STRONG><BR>
  170. <DD>
  171. Tells Chart what to use for the x-axis label.  If empty, no label
  172. is drawn.  Default is empty.
  173. <P></P>
  174. <DT><STRONG><A NAME="item_%27y_label%27%2C_%27y_label2%27">'y_label', 'y_label2'</A></STRONG><BR>
  175. <DD>
  176. Tells Chart what to use for the y-axis labels.  If empty, no label
  177. is drawn.  Default is empty.
  178. <P></P>
  179. <DT><STRONG><A NAME="item_%27legend%27">'legend'</A></STRONG><BR>
  180. <DD>
  181. Specifies the placement of the legend.  Valid values are 'left', 'right',
  182. 'top', 'bottom'.  Setting this to 'none' tells chart not to draw a
  183. legend.  Default is 'right'.
  184. <P></P>
  185. <DT><STRONG><A NAME="item_%27legend_labels%27">'legend_labels'</A></STRONG><BR>
  186. <DD>
  187. Sets the values for the labels for the different datasets.  Should
  188. be assigned a reference to an array of labels.  For example,
  189.  
  190. <PRE>
  191.  
  192.   @labels = ('foo', 'bar');
  193.   $obj->set ('legend_labels' => \@labels);</PRE>
  194. <P>Default is empty, in which case 'Dataset 1', 'Dataset 2', etc. are
  195. used as the labels.</P>
  196. <P>For a pareto graph, the first value should be the name of the set, and 
  197. the second should be the name of the running sum of the values.</P>
  198. <P>For a pie graph, this option is ignored, as the values for the legend 
  199. are taken from the array of data point labels.</P>
  200. <P></P>
  201. <DT><STRONG><A NAME="item_%27tick_len%27">'tick_len'</A></STRONG><BR>
  202. <DD>
  203. Sets the length of the x- and y-ticks in pixels.  Default is 4.
  204. <P></P>
  205. <DT><STRONG><A NAME="item_%27x_ticks%27">'x_ticks'</A></STRONG><BR>
  206. <DD>
  207. Specifies how to draw the x-tick labels.  Valid values are 'normal',
  208. 'staggered' (staggers the labels vertically), and 'vertical' (the
  209. labels are draw upwards).  Default is 'normal'.
  210. <P></P>
  211. <DT><STRONG><A NAME="item_%27y_ticks%27">'y_ticks'</A></STRONG><BR>
  212. <DD>
  213. Sets the number of y_ticks to draw.  Default is 6.
  214. <P></P>
  215. <DT><STRONG><A NAME="item_%27max_val%27">'max_val'</A></STRONG><BR>
  216. <DD>
  217. Sets the maximum y-value on the graph, overriding the normal auto-scaling.
  218. Default is undef.
  219. <P></P>
  220. <DT><STRONG><A NAME="item_%27min_val%27">'min_val'</A></STRONG><BR>
  221. <DD>
  222. Sets the minimum y-value on the graph, overriding the normal auto-scaling.
  223. Default is undef.
  224. <P></P>
  225. <DT><STRONG><A NAME="item_%27pt_size%27">'pt_size'</A></STRONG><BR>
  226. <DD>
  227. Sets the radius of the points (for Chart::Points, etc.) in pixels.  
  228. Default is 18.
  229. <P></P>
  230. <DT><STRONG><A NAME="item_%27brush_size%27">'brush_size'</A></STRONG><BR>
  231. <DD>
  232. Sets the width of the lines (for Chart::Lines, etc.) in pixels.
  233. Default is 6.
  234. <P></P>
  235. <DT><STRONG><A NAME="item_%27skip_x_ticks%27">'skip_x_ticks'</A></STRONG><BR>
  236. <DD>
  237. Sets the number of x-ticks and x-tick labels to skip.  (ie.  
  238. if 'skip_x_ticks' was set to 4, Chart would draw every 4th x-tick
  239. and x-tick label).  Default is undef.
  240. <P></P>
  241. <DT><STRONG><A NAME="item_%27custom_x_ticks%27">'custom_x_ticks'</A></STRONG><BR>
  242. <DD>
  243. Used in points, lines, linespoints, and bars charts, this option
  244. allows you to specify exatly which x-ticks and x-tick labels should
  245. be drawn.  It should be assigned a reference to an array of desired
  246. ticks.  Just remember that I'm counting from the 0th element of the
  247. array.  (ie., if 'custom_x_ticks' is assigned [0,3,4], then the 0th,
  248. 3rd, and 4th x-ticks will be displayed)
  249. <P></P>
  250. <DT><STRONG><A NAME="item_%27colors%27">'colors'</A></STRONG><BR>
  251. <DD>
  252. This option lets you control the colors the chart will use.  It takes
  253. a reference to a hash.  The hash should contain keys mapped to references
  254. to arrays of rgb values.  For instance,
  255. <PRE>
  256.         $obj->set('colors' => {'background' => [255,255,255]});</PRE>
  257. <P>sets the background color to white (which is the default).  Valid keys for
  258. this hash are</P>
  259. <PRE>
  260.         'background' (background color for the gif)
  261.         'text' (all the text in the chart)
  262.         'y_label' (color of the first y axis label)
  263.         'y_label2' (color of the second y axis label)
  264.         'grid_lines' (color of the grid lines)
  265.         'x_grid_lines' (color of the x grid lines - for x axis ticks)
  266.         'y_grid_lines' (color of the y grid lines - for to left y axis ticks)
  267.         'y2_grid_lines' (color of the y2 grid lines - for right y axis ticks)
  268.         'dataset0'..'dataset15' (the different datasets)
  269.         'misc' (everything else, ie. ticks, box around the legend)</PRE>
  270. <P>NB. For composite charts, there is a limit of 8 datasets per component.
  271. The colors for 'dataset8' through 'dataset15' become the colors
  272. for 'dataset0' through 'dataset7' for the second component chart.</P>
  273. <P></P>
  274. <DT><STRONG><A NAME="item_%27grey_background%27">'grey_background'</A></STRONG><BR>
  275. <DD>
  276. Puts a nice soft grey background on the actual data plot when
  277. set to 'true'.  Default is 'true'.
  278. <P></P>
  279. <DT><STRONG><A NAME="item_%27grid_lines%27">'grid_lines'</A></STRONG><BR>
  280. <DD>
  281. Draws grid lines matching up to x and y ticks
  282. <P></P>
  283. <DT><STRONG><A NAME="item_%27spaced_bars%27">'spaced_bars'</A></STRONG><BR>
  284. <DD>
  285. Leaves space between the groups of bars at each data point when set
  286. to 'true'.  This just makes it easier to read a bar chart.  Default
  287. is 'true'.
  288. <P></P>
  289. <DT><STRONG><A NAME="item_%27imagemap%27">'imagemap'</A></STRONG><BR>
  290. <DD>
  291. Lets Chart know you're going to ask for information about the placement
  292. of the data for use in creating an image map from the gif.  This information
  293. can be retrieved using the <CODE>imagemap_dump()</CODE> method.  NB. that the 
  294. <CODE>imagemap_dump()</CODE> method cannot be called until after the Chart has been
  295. generated (ie. using the <CODE>gif()</CODE> or <CODE>cgi_gif()</CODE> methods).
  296. <P></P>
  297. <DT><STRONG><A NAME="item_%27sort%27">'sort'</A></STRONG><BR>
  298. <DD>
  299. Tells Chart to sort the data before plotting it.  Can be assigned
  300. an order ('asc' or 'desc' for ascending and descending, respectively),
  301. in which case it sorts numerically.  Or it can also be assigned an
  302. array reference.  The array reference should contain 3 elements:  the
  303. order in which to search (as above), which dataset to use (remember
  304. that 0 is the x-tick labels), and the type of sort to do ('alpha' or 'num'
  305. for alphabetical or numerical sorts, respectively).  For example,
  306. <PRE>
  307.     $obj->set ('sort' => ['asc', 2, 'num']);</PRE>
  308. <P>would sort the data numerically in ascending order, sorting by the 
  309. third dataset (second if you don't count the x-tick labels).  Note that</P>
  310. <PRE>
  311.     $obj->set ('sort' => ['asc', 0, 'alpha']);</PRE>
  312. <P>will sort the data in ascending alphabetical order by the x-tick labels.
  313. Defualts to undef, normally, and 'desc' for pareto.</P>
  314. <P></P>
  315. <DT><STRONG><A NAME="item_%27nosort%27">'nosort'</A></STRONG><BR>
  316. <DD>
  317. Turns off the default sort for pareto graphs.  Default is undef.
  318. <P></P>
  319. <DT><STRONG><A NAME="item_%27cutoff%27">'cutoff'</A></STRONG><BR>
  320. <DD>
  321. Only used for pareto charts, this option determines where the 
  322. cut-off point is.  It then lumps everything after the highest 'cutoff' 
  323. data points into an 'Other' entry on the chart.  Default is 5.
  324. <P></P>
  325. <DT><STRONG><A NAME="item_%27nocutoff%27">'nocutoff'</A></STRONG><BR>
  326. <DD>
  327. Turns off the default 'cutoff' feature of pareto graphs.  Defaut is 
  328. undef.
  329. <P></P>
  330. <DT><STRONG><A NAME="item_%27composite_info%27">'composite_info'</A></STRONG><BR>
  331. <DD>
  332. This option is only used for composite charts.  It contains the
  333. information about which types to use for the two component charts,
  334. and which datasets belonf to which component chart.  It should be
  335. a reference to an array of array references, containing information 
  336. like the following
  337. <PRE>
  338.         $obj->set ('composite_info' => [ ['Bars', [1,2]],
  339.                                          ['Lines', [3,4] ]);</PRE>
  340. <P>This example would set the two component charts to be a bar chart and
  341. a line chart.  It would use the first two data sets for the bar 
  342. chart (note that the numbering starts at 1, not zero like most of
  343. the other numbered things in Chart), and the second two data sets
  344. for the line chart.  The default is undef.</P>
  345. <P>NB. Chart::Composite can only do two component charts.</P>
  346. <P></P>
  347. <DT><STRONG><A NAME="item_%27min_val1%27%2C_%27min_val2%27">'min_val1', 'min_val2'</A></STRONG><BR>
  348. <DD>
  349. Only for composite charts, these options specify the minimum y-value
  350. for the first and second components respectively.  Both default to
  351. undef.
  352. <P></P>
  353. <DT><STRONG><A NAME="item_%27max_val1%27%2C_%27max_val2%27">'max_val1', 'max_val2'</A></STRONG><BR>
  354. <DD>
  355. Only for composite charts, these options specify the maximum y-value
  356. for the first and second components respectively.  Both default to
  357. undef.
  358. <P></P>
  359. <DT><STRONG><A NAME="item_%27ylabel2%27">'ylabel2'</A></STRONG><BR>
  360. <DD>
  361. The label for the right y-axis (the second component chart) on a composite
  362. chart.  Default is undef.
  363. <P></P>
  364. <DT><STRONG><A NAME="item_%27yticks1%27%2C_%27y_ticks2%27">'yticks1', 'y_ticks2'</A></STRONG><BR>
  365. <DD>
  366. The number of y ticks to use on the first and second y-axis on a composite
  367. chart.  Please note that if you just set the 'y_ticks' option, both axes 
  368. will use that number of y ticks.  Both default to undef.
  369. <P></P>
  370. <DT><STRONG><A NAME="item_%27same_y_axes%27">'same_y_axes'</A></STRONG><BR>
  371. <DD>
  372. Forces both component charts in a composite chart to use the same maximum 
  373. and minimum y-values if set to 'true'.  This helps to keep the composite 
  374. charts from being too confusing.  Default is undef.
  375. <P></P>
  376. <DT><STRONG><A NAME="item_%27no_cache%27">'no_cache'</A></STRONG><BR>
  377. <DD>
  378. Adds Pragma: no-cache to the http header.  Be careful with this one, as
  379. Netscape 4.5 is unfriendly with POST using this method.
  380. <P></P></DL>
  381. <P>
  382. <H2><A NAME="gifgraph.pmstyle api">GIFgraph.pm-style API</A></H2>
  383. <DL>
  384. <DT><STRONG><A NAME="item_Sending_the_image_to_a_file">Sending the image to a file</A></STRONG><BR>
  385. <DD>
  386. Invoking the gif method causes the graph to be plotted and saved to 
  387. a file.  It takes the name of the output file and a reference to the
  388. data as arguments.  For example,
  389. <PRE>
  390.   $obj->gif ("foo.gif", \@data);</PRE>
  391. <P>would plot the data in @data, and the save the image to foo.gif.
  392. Of course, this then beggars the question ``What should @data look
  393. like?''.  Well, just like GIFgraph, @data should contain references
  394. to arrays of data, with the first array reference pointing to an
  395. array of x-tick labels.  For example,</P>
  396. <PRE>
  397.   @data = ( [ 'foo', 'bar', 'junk' ],
  398.             [ 30.2,  23.5,  92.1   ] );</PRE>
  399. <P>would set up a graph with one dataset, and three data points in that
  400. set.  In general, the @data array should look something like</P>
  401. <PRE>
  402.   @data = ( \@x_tick_labels, \@dataset1, ... , \@dataset_n );</PRE>
  403. <P>And no worries, I make my own internal copy of the data, so that it doesn't
  404. mess with yours.</P>
  405. <P></P>
  406. <DT><STRONG><A NAME="item_CGI_and_Chart">CGI and Chart</A></STRONG><BR>
  407. <DD>
  408. Okay, so you're probably thinking, ``Do I always have to save these images
  409. to disk?  What if I want to use Chart to create dynamic images for my
  410. web site?''  Well, here's the answer to that.
  411. <PRE>
  412.   $obj->cgi_gif ( \@data );</PRE>
  413. <P>The cgi_gif method will print the chart, along with the appropriate http
  414. header, to stdout, allowing you to call chart-generating scripts directly
  415. from your html pages (ie. with a <img src=image.pl> HTML tag).  The @data
  416. array should be set up the same way as for the normal gif method.</P>
  417. <P></P></DL>
  418. <P>
  419. <H2><A NAME="graph.pmstyle api">Graph.pm-style API</A></H2>
  420. <P>You might ask, ``But what if I just want to add a few points to the graph, 
  421. and then display it, without all those references to references?''.  Well,
  422. friend, the solution is simple.  Borrowing the add_pt idea from Matt
  423. Kruse's Graph module, you simply make a few calls to the add_pt method,
  424. like so:</P>
  425. <PRE>
  426.     $obj->add_pt ('foo', 30, 25);
  427.     $obj->add_pt ('bar', 16, 32);</PRE>
  428. <P>Or, if you want to be able to add entire datasets, simply use the add_dataset
  429. method:</P>
  430. <PRE>
  431.     $obj->add_dataset ('foo', 'bar');
  432.     $obj->add_dataset (30, 16);
  433.     $obj->add_dataset (25, 32);</PRE>
  434. <P>These methods check to make sure that the points and datasets you are
  435. adding are the same size as the ones already there.  So, if you have
  436. two datasets currently stored, and try to add a data point with three
  437. different values, it will carp (per the Carp module) an error message.
  438. Similarly, if you try to add a dataset with 4 data points,
  439. and all the other datasets have 3 data points, it will carp an error
  440. message.</P>
  441. <P>Don't forget, when using this API, that I treat the first dataset as
  442. a series of x-tick labels.  So, in the above examples, the graph would
  443. have two x-ticks, labeled 'foo' and 'bar', each with two data points.</P>
  444. <DL>
  445. <DT><STRONG><A NAME="item_Clearing_the_data">Clearing the data</A></STRONG><BR>
  446. <DD>
  447. A simple call to the clear_data method empties any values that may
  448. have been entered.
  449. <PRE>
  450.     $obj->clear_data ();</PRE>
  451. <P></P>
  452. <DT><STRONG><A NAME="item_Getting_a_copy_of_the_data">Getting a copy of the data</A></STRONG><BR>
  453. <DD>
  454. If you want a copy of the data that has been added so far, make a call
  455. to the get_data method like so:
  456. <PRE>
  457.         $dataref = $obj->get_data;</PRE>
  458. <P>It returns (you guessed it!) a reference to an array of references to
  459. datasets.  So the x-tick labels would be stored as</P>
  460. <PRE>
  461.         @x_labels = @{$dataref->[0]};</PRE>
  462. <P></P>
  463. <DT><STRONG>Sending the image to a file</STRONG><BR>
  464. <DD>
  465. If you just want to print this chart to a file, all you have to do
  466. is pass the name of the file to the <CODE>gif()</CODE> method.
  467. <PRE>
  468.         $obj->gif ("foo.gif");</PRE>
  469. <P></P>
  470. <DT><STRONG><A NAME="item_Sending_the_image_to_a_filehandle">Sending the image to a filehandle</A></STRONG><BR>
  471. <DD>
  472. If you want to do something else with the image, you can also pass
  473. a filehandle (either a typeglob or a FileHandle object) to gif, and
  474. it will print directly to that.
  475. <PRE>
  476.         $obj->gif ($filehandle);
  477.         $obj->gif (FILEHANDLE);</PRE>
  478. <P></P>
  479. <DT><STRONG>CGI and Chart</STRONG><BR>
  480. <DD>
  481. Okay, so you're probably thinking (again), ``Do I always have to save these 
  482. images to disk?  What if I want to use Chart to create dynamic images for
  483. my web site?''  Well, here's the answer to that.
  484. <PRE>
  485.         $obj->cgi_gif ();</PRE>
  486. <P>The cgi_gif method will print the chart, along with the appropriate http
  487. header, to stdout, allowing you to call chart-generating scripts directly
  488. from your html pages (ie. with a <img src=image.pl> HTML tag).</P>
  489. <P></P></DL>
  490. <P>
  491. <H2><A NAME="imagemap support">Imagemap Support</A></H2>
  492. <P>Chart can also return the pixel positioning information so that you can
  493. create image maps from the gifs Chart generates.  Simply set the 'imagemap'
  494. option to 'true' before you generate the gif, then call the <CODE>imagemap_dump()</CODE>
  495. method afterwards to retrieve the information.  You will be returned a
  496. data structure almost identical to the @data array described above to pass
  497. the data into Chart.</P>
  498. <PRE>
  499.         $imagemap_data = $obj->imagemap_dump ();</PRE>
  500. <P>Instead of single data values, you will be passed references to arrays
  501. of pixel information.  For Bars and StackedBars charts, the arrays will
  502. contain two x-y pairs (specifying the upper left and lower right corner
  503. of the bar), like so</P>
  504. <PRE>
  505.         ( $x1, $y1, $x2, $y2 ) = @{ $imagemap_data->[$dataset][$datapoint] };</PRE>
  506. <P>For Lines, Points, and LinesPoints, the arrays will contain a single
  507. x-y pair (specifying the center of the point), like so</P>
  508. <PRE>
  509.         ( $x, $y ) = @{ $imagemap_data->[$dataset][$datapoint] };</PRE>
  510. <P>A few caveats apply here.  First of all, GD treats the upper-left corner
  511. of the gif as the (0,0) point, so positive y values are measured from the
  512. top of the gif, not the bottom.  Second, these values will most likely
  513. contain long decimal values.  GD, of course, has to truncate these to 
  514. single pixel values.  Since I don't know how GD does it, I can't truncate
  515. it the same way he does.  In a worst-case scenario, this will result in
  516. an error of one pixel on your imagemap.  If this is really an issue, your
  517. only option is to either experiment with it, or to contact Lincoln Stein
  518. and ask him.  Third, please remember that the 0th dataset will be empty,
  519. since that's the place in the @data array for the data point labels.</P>
  520. <P>
  521. <HR>
  522. <H1><A NAME="to do">TO DO</A></H1>
  523. <UL>
  524. <LI>
  525. Numeric x-axes.
  526. <P></P>
  527. <LI>
  528. Add some 3-D graphs.
  529. <P></P></UL>
  530. <P>
  531. <HR>
  532. <H1><A NAME="bugs">BUGS</A></H1>
  533. <P>Probably quite a few, since it's been completely rewritten.  As usual,
  534. please mail me with any bugs, patches, suggestions, comments, flames,
  535. death threats, etc.</P>
  536. <P>
  537. <HR>
  538. <H1><A NAME="author">AUTHOR</A></H1>
  539. <P>David Bonner (<A HREF="mailto:dbonner@cs.bu.edu">dbonner@cs.bu.edu</A>)</P>
  540. <P>
  541. <HR>
  542. <H1><A NAME="maintainer">MAINTAINER</A></H1>
  543. <P>Peter Clark (<A HREF="mailto:ninjaz@webexpress.com">ninjaz@webexpress.com</A>)</P>
  544. <P>
  545. <HR>
  546. <H1><A NAME="copyright">COPYRIGHT</A></H1>
  547. <P><CODE>Copyright(c)</CODE> 1997-1998 by David Bonner, 1999 by Peter Clark
  548. All rights reserved.  This program is free software; you can
  549. redistribute it and/or modify it under the same terms as Perl 
  550. itself.</P>
  551. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  552. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  553. <STRONG><P CLASS=block> Chart - a series of charting modules</P></STRONG>
  554. </TD></TR>
  555. </TABLE>
  556.  
  557. </BODY>
  558.  
  559. </HTML>
  560.