home *** CD-ROM | disk | FTP | other *** search
-
- { Copyright (c) 1985, 87 by Borland International, Inc. }
-
- program OneHist;
-
- {$I Float.inc} { Determines what type Float means. }
-
- uses
- Dos, Crt, GDriver, GKernel, GWindow, GShell;
-
- procedure HistoDem;
- var
- I, DisplyLen, HatchDen : integer;
- A : PlotArray;
- R : Float;
- Ch : char;
- Hatch : boolean;
-
- begin
- DisplyLen := 10; { Draw ten bars }
-
- for I := 0 to DisplyLen do { Init the display array with random #'s }
- begin;
- A[I+1, 2] := Random;
- end;
-
- SetColorWhite; { Set up the window for the bar chart }
- SetBackground(0);
- SetHeaderOn;
- DefineWindow(1, 0, 0, XMaxGlb, YMaxGlb);
- DefineHeader(1, 'A RANDOM BAR CHART WITH HATCHING');
- DefineWorld(1, -10, 0, 10, 1.0);
- SelectWorld(1);
- SelectWindow(1);
-
- DrawBorder; { Draw the window }
-
- Hatch := true; { Enable hatching }
- HatchDen := 7; { Draw hatch lines this far apart }
-
- DrawHistogram(A, -DisplyLen, Hatch, HatchDen); { Draw the bar chart }
- end; { HistoDem }
-
-
- begin { OneHist }
- InitGraphic; { Initialize the graphics system }
-
- HistoDem; { Do the demo }
-
- repeat until KeyPressed; { Wait until a key is pressed }
-
- LeaveGraphic; { Leave the graphics system }
- end. { OneHist }
-