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

SNMP编程

开发平台:

C/C++

  1. use GIFgraph::linespoints;
  2. print STDERR "Processing sample 4-1n";
  3. @data = ( 
  4.     ["1st","2nd","3rd","4th","5th","6th","7th", "8th", "9th"],
  5.     [undef,  52,  53,  54,  55,  56,  undef,  58,  59],
  6.     [60,  61,  61,  undef,  68,  66,  65,  61, undef],
  7. );
  8. $my_graph = new GIFgraph::linespoints( );
  9. $my_graph->set( 
  10. x_label => 'X Label',
  11. y_label => 'Y label',
  12. title => 'A Lines and Points Graph',
  13. y_max_value => 80,
  14. y_tick_number => 6,
  15. y_label_skip => 2,
  16. markers => [ 1, 5 ],
  17. );
  18. $my_graph->set_legend( 'data set 1', 'data set 2' );
  19. $my_graph->plot_to_gif( "sample41.gif", @data );
  20. exit;