sample62.pl
上传用户:shbosideng
上传日期:2013-05-04
资源大小:1555k
文件大小:1k
源码类别:

SNMP编程

开发平台:

C/C++

  1. use GIFgraph::mixed;
  2. print STDERR "Processing sample 6-2n";
  3. @data = ( 
  4.     ["1st","2nd","3rd","4th","5th","6th","7th", "8th", "9th"],
  5.     [    9,    8,    9,  8.4,  7.1,  7.5,    8,     3,     3],
  6.     [   .4,   .3,    1,    1,   .3,  1.5,    2,     1,     0],
  7. );
  8. $my_graph = new GIFgraph::mixed();
  9. $my_graph->set( 
  10. x_label => 'X Label',
  11. y1_label => 'Y1 label',
  12. y2_label => 'Y2 label',
  13. title => 'A Mixed Type Graph with Two Axes',
  14. two_axes => 1,
  15. y1_max_value => 10,
  16. y2_max_value => 2.5,
  17. y_min_value => 0,
  18. y_tick_number => 5,
  19. long_ticks => 1,
  20. x_ticks => 0,
  21. legend_marker_width => 24,
  22. line_width => 5,
  23. bar_spacing => 4,
  24. types => [ qw( bars lines ) ],
  25. );
  26. $my_graph->set_legend( qw( one two three four five six ) );
  27. $my_graph->plot_to_gif( "sample62.gif", @data );
  28. exit;