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

SNMP编程

开发平台:

C/C++

  1. use GIFgraph::lines;
  2. use GIFgraph::colour;
  3. GIFgraph::colour::read_rgb("rgb.txt") or 
  4. die "Cannot read colours from rgb.txt";
  5. print STDERR "Processing sample 5-3n";
  6. @data = ( 
  7.     ["1st","2nd","3rd","4th","5th","6th","7th", "8th", "9th"],
  8.     [    1,    2,    5,    6,    3,  1.5,   -1,    -3,    -4],
  9.     [   -4,   -3,    1,    1,   -3, -1.5,   -2,    -1,     0],
  10.     [    9,    8,    9,  8.4,  7.1,  7.5,    8,     3,    -3],
  11. [  0.1,  0.2,  0.5,  0.4,  0.3,  0.5,  0.1,     0,   0.4],
  12. );
  13. $my_graph = new GIFgraph::lines();
  14. $my_graph->set( 
  15. x_label => 'X Label',
  16. y_label => 'Y label',
  17. title => 'A Multiple Line Graph',
  18. y_max_value => 10,
  19. y_min_value => -5,
  20. y_tick_number => 3,
  21. y_label_skip => 1,
  22. zero_axis_only => 0,
  23. long_ticks => 1,
  24. x_ticks => 0,
  25. dclrs => [ qw( darkorchid2 mediumvioletred deeppink darkturquoise ) ],
  26. line_types => [ 1, 2, 3, 4 ],
  27. line_type_scale => 8,
  28. legend_marker_width => 24,
  29. line_width => 3,
  30. );
  31. $my_graph->set_legend( 'one', 'two', undef, 'four' );
  32. $my_graph->plot_to_gif( "sample53.gif", @data );
  33. exit;