[<<Previous Entry]
[^^Up^^]
[Next Entry>>]
[Menu]
[About The Guide]
GraphBar3()
And another bar graph with Clipper!!
Syntax:
GraphBar3( cTitle, aItems, aArray, nTypeBar ) -> Nil
cTitle : Title of graphic
aItems : An array containing legends
aValues : An array containing numerical values
nTypeBar : Bar Type
0 : Default, normal bar
1 : top pyramidal bar
2 : bottom pyramidal bar
3 : cylindric bar
Description:
It generates a bar graphics in Clipper. It only works in EGA
and VGA.
This function is made from other functions of Fast Library, so
if you do not like it, you can make your own directly. The only
objective is to save you some work.
Fast offers the resources to rebuild this function if there is
something in it that you would like to modify more to you liking.
The only thing needed is some simple knowledge of Plain Geometry.
Return:
Nothing.
Example:
SetVGA ()
GraphBar3( "GraphBar3 Demo", ;
{ "Item1", "Item2", "Item3", "Item4" }, ;
{ 481, 212, 212, 266 }, ;
3 )
Inkey (0)
TxtMode ()
See Also:
GraphBar()
GraphBar2()
GraphEllipse()
GraphTart()
This page created by ng2html v1.05, the Norton guide to HTML conversion utility.
Written by Dave Pearson