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

isLegendShown()

void

setLegendShown(boolean legendShown)

void

setSliceValue(string key, double value)

void

setTitle(string label)

Methods of BBjPieChart implemented for DropTarget

Return Value

Method

int

getDropActions()

void

setDropActions(int actions)

BBjVector

getDropTypes()

void

setDropTypes(BBjVector types)

Methods of BBjPieChart implemented for Focusable

Return Value

Method

boolean

isFocusable()

void

setFocusable(boolean p_focus)

Methods of BBjPieChart implemented for TabTraversable

Return Value

Method

boolean

isTabTraversable()

void

setTabTraversable(boolean trav)

Methods of BBjPieChart inherited from BBjCommonChart

Return Value

Method

void

clearData()

Methods of BBjPieChart inherited from BBjChart

Return Value

Method

JFreeChart@

getClientChart()

ClientChartPanel@

getClientChartPanel()

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

BBjDropTargetDropEvent

Drop Target Drop Event

D

ON_GAINED_FOCUS

BBjGainedFocusEvent

Control Focus Gained/Lost Event

f

ON_LOST_FOCUS

BBjLostFocusEvent

Control Focus Gained/Lost Event

f

ON_MOUSE_ENTER

BBjMouseEnterEvent

Mouse Enter/Exit Event

E

ON_MOUSE_EXIT

BBjMouseExitEvent

Mouse Enter/Exit Event

E

ON_POPUP_REQUEST

BBjPopupRequestEvent

Popup Request Event

r

ON_RIGHT_MOUSE_DOWN

BBjRightMouseDownEvent

Right Mouse Button Down Event

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

BBjAPI

BBjSysGui

BBjWindow

CALLBACK Verb - Register BBj Subroutine

Focusable

TabTraversable

ClientObject Tutorial

See the BBj Object Diagram for an illustration of the relationship between BBj Objects.