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

SNMP编程

开发平台:

C/C++

  1. use GIFgraph::mixed;
  2. print STDERR "Processing sample 6-1 (The error message is intended)n";
  3. @data = ( 
  4.     ["1st","2nd","3rd","4th","5th","6th","7th", "8th", "9th"],
  5.     [    1,    2,    5,    6,    3,  1.5,   -1,    -3,    -4],
  6.     [   -4,   -3,    1,    1,   -3, -1.5,   -2,    -1,     0],
  7.     [    9,    8,    9,  8.4,  7.1,  7.5,    8,     3,    -3],
  8. [  0.1,  0.2,  0.5,  0.4,  0.3,  0.5,  0.1,     0,   0.4],
  9. [ -0.1,    2,    5,    4,   -3,  2.5,  3.2,     4,    -4],
  10. [ -0.1,    2,    5,    4,   -3,  2.5,  3.2,     4,    -4],
  11. );
  12. $my_graph = new GIFgraph::mixed();
  13. $my_graph->set( 
  14. types => [ qw( lines bars points area linespoints wrong_type ) ],
  15. default_type => 'points',
  16. );
  17. $my_graph->set( 
  18. x_label => 'X Label',
  19. y_label => 'Y label',
  20. title => 'A Mixed Type Graph',
  21. y_max_value => 10,
  22. y_min_value => -5,
  23. y_tick_number => 3,
  24. y_label_skip => 1,
  25. x_plot_values => 0,
  26. y_plot_values => 0,
  27. long_ticks => 1,
  28. x_ticks => 0,
  29. legend_marker_width => 24,
  30. line_width => 3,
  31. marker_size => 5,
  32. bar_spacing => 8,
  33. );
  34. $my_graph->set_legend( qw( one two three four five six ) );
  35. $my_graph->plot_to_gif( "sample61.gif", @data );
  36. exit;