
BBjWindow::addPieChart
Description
In BBj 7.0 and higher, this method adds a pie chart control to the BBjWindow.
Syntax
Return Value |
Method |
addPieChart(int controlID, int left, int top, int width, int height) |
|
addPieChart(int controlID, int left, int top, int width, int height, boolean showLegend, boolean is3D) |
|
addPieChart(int controlID, int left, int top, int width, int height, boolean showLegend, boolean is3D, string flags) |
Parameters
Variable |
Description |
|
ID |
Specifies the Control ID number. It must be an integer between 1 and 32767 and be unique within a given top level window. |
|
x |
Specifies the horizontal position of the upper-left corner of the control in current units. |
|
y |
Specifies the vertical position of the upper-left corner of the control in current units. |
|
width |
Specifies the width of the control in current units. |
|
height |
Specifies the height of the control in current units. |
|
showLegend |
Indicates
whether a default legend should be displayed. |
|
is3D |
Indicates
whether the chart should be rendered in 3 dimensions. |
|
flags |
Set control flags, as follows: |
|
|
Flag |
Description |
|
$0001$ |
Sets the control to be initially disabled. |
|
$0010$ |
Sets the control to be initially invisible. |
|
$0800$ |
Draws a recessed client edge around the control. |
|
$1000$ |
Draws a raised edge around the control |
Return Value
Returns the created BBjPieChart object.
Remarks
None.
Example
REM Barchart demo: Graph time spent in the lead
for the Soapbox Derby |
See Also
See the BBj Object Diagram for an illustration of the relationship between BBj Objects.