home *** CD-ROM | disk | FTP | other *** search
-
- { Copyright (c) 1985, 87 by Borland International, Inc. }
-
- program OnePieDemo;
-
- {$I Float.inc} { Determines what type Float means. }
-
- uses
- Dos, Crt, GDriver, GKernel, GWindow, GShell;
-
- procedure OnePieDem;
-
- var
- Sum, X1, Y1, Radius, Theta, InRadius, OutRadius : Float;
- N, Mode, Size : integer;
- A : PieArray;
- Back : byte;
- Ch : char;
-
- begin { OnePieDem }
- ClearScreen;
- SetColorWhite;
- DefineWindow(1, 0, 0, XMaxGlb, YMaxGlb);
- DefineHeader(1, 'A SINGLE PIE CHART'); { Set up a window }
- DefineWorld(1, 0, 0, 1000, 1000);
- SelectWorld(1);
- SelectWindow(1);
- SetHeaderOn;
- SetBackground(0);
- DrawBorder;
-
- N := 5; { The number of pie segments }
- A[1].Area := 25; { Initialize the pie array }
- A[2].Area := 17.5;
- A[3].Area := 9.6;
- A[4].Area := 21;
- A[5].Area := 35;
- A[1].Text := 'JAN.=';
- A[2].Text := 'FEB.=';
- A[3].Text := 'MAR.=';
- A[4].Text := 'APR.=';
- A[5].Text := 'MAY=';
-
- A[1].Area := -A[1].Area; { Move the first segment outward }
-
- X1 := 500; { Set the center to mid screen }
- Y1 := 500;
-
- Radius := 200; { Set the start of the circle }
- Theta := 60;
-
- SetAspect(1.0); { Set the aspect ratio }
-
- InRadius := 0.7; { Set the ends of the lable line }
- OutRadius := 1.25;
-
- Mode := 2; { Set to draw both lables }
- Size := 2; { Set to text size two }
-
- { Draw the pie }
- DrawPolarPie(X1, Y1, Radius, Theta, InRadius,
- OutRadius, A, N, Mode, Size);
- end; { OnePieDem }
-
- begin { OnePieDemo }
- InitGraphic; { Initialize the graphics system }
-
- OnePieDem; { Do the demo }
-
- repeat until KeyPressed; { Wait until a key is pressed }
-
- LeaveGraphic; { Leave the graphics system }
- end. { OnePieDemo }
-
-