
BBjPieChart
Description
In BBj 7.0 and higher, the BBjPieChart control displays data in a pie chart format.
Implemented Interfaces
DropTarget, Focusable, TabTraversable
Creation
BBjAPI > BBjSysGui > BBjWindow > BBjPieChart
A BBjPieChart object is created through the following BBjWindow methods:
Return Value |
Method |
---|---|
BBjPieChart |
addPieChart(int controlID, int left, int top, int width, int height) |
BBjPieChart |
addPieChart(int controlID, int left, int top, int width, int height, boolean showLegend, boolean is3D, string flags) |
BBjPieChart |
addPieChart(int ID, boolean showLegend, boolean is3D) |
BBjPieChart |
addPieChart(int ID, boolean showLegend, boolean is3D, String flags) |
BBjPieChart |
addPieChart(boolean showLegend, boolean is3D) |
BBjPieChart |
addPieChart(boolean showLegend, boolean is3D, String flags) |
Methods of BBjPieChart
Return Value |
Method |
string |
getTitle() |
boolean |
is3D() |
boolean |
|
void |
setLegendShown(boolean legendShown) |
void |
setSliceValue(string key, double value) |
void |
setTitle(string label) |
Methods of BBjPieChart implemented for DropTarget
Return Value |
Method |
int |
|
void |
setDropActions(int actions) |
void |
setDropTypes(BBjVector types) |
Methods of BBjPieChart implemented for Focusable
Return Value |
Method |
boolean |
|
void |
setFocusable(boolean p_focus) |
Methods of BBjPieChart implemented for TabTraversable
Return Value |
Method |
boolean |
|
void |
setTabTraversable(boolean trav) |
Methods of BBjPieChart inherited from BBjCommonChart
Return Value |
Method |
void |
Methods of BBjPieChart inherited from BBjChart
Return Value |
Method |
void |
writePNGToServer(string filename) |
void |
writePNGToServer(string filename, boolean writeAlpha, int compression) |
void |
writePNGToServer(string filename, int width, int height, boolean writeAlpha, int compression) |
Methods of BBjPieChart inherited from BBjControl
Events
Callback Code |
Object-oriented Event |
Read Record Event |
Code |
ON_DROP_TARGET_DROP |
D |
||
ON_GAINED_FOCUS |
f |
||
ON_LOST_FOCUS |
f |
||
ON_MOUSE_ENTER |
E |
||
ON_MOUSE_EXIT |
E |
||
ON_POPUP_REQUEST |
r |
||
ON_RIGHT_MOUSE_DOWN |
R |
CSS
The visual appearance of BUI controls is defined using CSS (cascading style sheets) rules. Easily change the default colors, border, and other settings by customizing these rules, all without changing any application code. See CSS API for a high-level overview of BUI CSS.
The BUI BBjPieChart is implemented as an <image> element. It defines the following style names:
.BBjPieChart
.BBjPieChart.bbj-disabled
Use CSS styles that would work with images, for example:
.BBjPieChart { opacity: 0.4; border-radius: 15px; border-width: 2px; box-shadow: 7px 7px 5px rgba(50, 50, 50, 0.5); } .BBjPieChart:hover { opacity: 1.0; } |
That adds a rounded border and drop shadow to the chart image, and dims it unless the mouse is hovering over it.
Or to show a disabled BBjPieChart grayed out:
.BBjPieChart bbj-disabled { opacity: 0.4; } |
Remarks
None.
Constants inherited from BBjControl
Example
See Also
CALLBACK Verb - Register BBj Subroutine
See the BBj Object Diagram for an illustration of the relationship between BBj Objects.