BBjWindow::addGenericChart

Description

In BBj 7.00 and higher, this method adds a generic chart control to the BBjWindow.

Syntax

Return Value

Method

BBjGenericChart addGenericChart()

BBjGenericChart

addGenericChart(byte[] flags)

BBjGenericChart addGenericChart(int ID)
BBjGenericChart addGenericChart(int ID, byte[] flags)

BBjGenericChart

addGenericChart(int ID, number x, number y, number w, number h)

BBjGenericChart

addGenericChart(int ID, number x, number y, number w, number h, byte[] flags)

Parameters

Parameter

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

Horizontal position of the upper-left corner of the control in current units.

y

Vertical position of the upper-left corner of the control in current units.

width

Width of the control in current units.

height

Height of the control in current units.

flags

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 BBjGenericChart object.

Remarks

BBjChart functionality that depends on client objects is fully supported in the BUI and DWC clients for BBj 23.05 and higher.

Before BBj 23.05

For versions of BBj before 23.05, the BBjGenericChart depends on being able to specify an arbitrary client-side JFreeChart object. This is only available in the Java Swing GUI client, so this API is inappropriate for the browser-based BUI and DWC clients for versions of BBj before 23.05.

If the ID parameter is not specified, a control ID is assigned dynamically using getAvailableControlID().

If the x, y, width, and height parameters are not specified, they are all initialized to 0. This is typically for use with DWC windows that dynamically arrange their contents (window creation flag $00100000$).

Example

See Also

BBjAPI

BBjSysGui

BBjControl

BBjWindow

BBjGenericChart

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