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

SNMP编程

开发平台:

C/C++

  1. use GIFgraph::pie;
  2. print STDERR "Processing sample 9-4n";
  3. @data = ( 
  4. [ qw( 1st 2nd 3rd 4th 5th 6th 7th ) ],
  5. [ sort { $b <=> $a} (5.6, 2.1, 3.03, 4.05, 1.34, 0.2, 2.56) ]
  6. );
  7. $my_graph = new GIFgraph::pie( 260, 300 );
  8. $my_graph->set( 
  9. start_angle => 90,
  10. '3d' => 0
  11. );
  12. $my_graph->set_legend( 'Alpha', 'Beta', 'Gamma', 'Delta', 'Epsilon', 'Forget', 'Rest');
  13. $my_graph->plot_to_gif( "sample94.gif", @data );
  14. exit;