グラフサンプル (No.-37) グラフ名:円グラフ 画像名:sample94.gif CGI名:sample94.pl
sample94.gif


【要点】
(1)円グラフを描く
   GD::Graph::pie; #円グラフ
   $my_graph = new GD::Graph::pie( 250, 200 );
              #()内の数字は、グラフキャンバスの大きさ
(2)(X軸または)円グラフの扇型に表示するラベルの色を指定する
  axislabelclr 	=> 'black', #黒
(3)グラフの厚みを決める
  pie_height => 36, #円の高さ(厚み)。
                    #デフォルトは、0.1×グラフキャンバスのHeight
(4)色について
   背景色dclrsが省略のため、色はデフォルトで描かれています。
   デフォルト:qw (lred lgreen lblue lyellow lpurple cyan lorange) 
   Oversized labelはlred labelはlgreen undehはlblueが割り当てられる。
sample94.pl

chdir("C:\\Inetpub\\wwwroot\\uriage"); #カレントディレクトリ指定(IISの場合)
use lib 'C:/Inetpub/wwwroot/uriage'; #GD::Graphライブラリ格納フォルダ GD (固定)の場所
#
use GD::Graph::pie;
use strict;
require 'save.pl';

# Test for very large slices that wrap around, and for text that
# is larger than the pie boundaries

print STDERR "Processing sample94\n";

my @data = ( 
    ["Oversized label", "label", undef],
    [3, 2.5, 23]
);

my $my_graph = new GD::Graph::pie( 250, 200 );

$my_graph->set( 
	title => 'A Pie Chart',
	label => 'Label',
	axislabelclr => 'black',
	pie_height => 36,
	l_margin => 10,
	r_margin => 10,
	# approximate boundary conditions for start_angle
	#start_angle => -85,
	#start_angle => 15,

	transparent => 0,
);

$my_graph->set_value_font(GD::Font->Giant);

$my_graph->plot(\@data);
save_chart($my_graph, 'sample94');


(参考)
  ●本ソースコードの1〜3行目(挿入) 1 chdir("C:\Inetpub\wwwroot\uriage"); #カレントディレクトリ指定(IISの場合) 2 use lib 'C:/Inetpub/wwwroot/uriage'; #GD::Graphライブラリ格納フォルダ GD (固定)の場所 3 # Windows IIS 走行用に元ソースに挿入   ●>save.pl(グラフ画像保存ルーチン)

最終更新日:2005.1.17