Package | Description |
---|---|
org.pepstock.charba.client.commons |
Core classes to manage the inter-operations with java script code.
|
org.pepstock.charba.client.data |
Contains all elements to configure the datasets of a chart instance (know as chart data at instance level).
|
org.pepstock.charba.client.dom.elements |
Contains a set of DOM elements that Charba is using.
|
Modifier and Type | Method and Description |
---|---|
static ArrayInteger |
ArrayInteger.fromOrEmpty(int... items)
This method creates new array instance with a variable number of
int arguments. |
static ArrayInteger |
ArrayInteger.fromOrEmpty(List<Integer> items)
Creates a java script array of integers starting from list of integers.
|
static ArrayInteger |
ArrayInteger.fromOrNull(int... items)
This method creates new array instance with a variable number of
int arguments. |
static ArrayInteger |
ArrayInteger.fromOrNull(List<Integer> items)
Creates a java script array of integers starting from list of integers.
|
protected ArrayInteger |
NativeObjectContainer.getValueOrArray(Key key,
int defaultValue)
Returns a value (array) in the embedded JavaScript object at specific property.
This must be used when a java script property can contain an array or a integer. |
Modifier and Type | Method and Description |
---|---|
static ArrayIntegerList |
ArrayListHelper.list(ArrayInteger values)
Creates a array list of integers by a java script array of integers.
|
static List<Integer> |
ArrayListHelper.unmodifiableList(ArrayInteger values)
Creates an unmodifiable array list of integers by a java script array of integers.
|
Modifier and Type | Method and Description |
---|---|
protected ArrayInteger |
HoverDataset.getWidths(Key key,
int defaultvalue) |
protected ArrayInteger |
HoverFlexDataset.getWidths(Key key,
int defaultvalue)
Returns an array of widths as integer
|
Modifier and Type | Method and Description |
---|---|
ArrayInteger |
ImageData.getData()
Returns the array which is representing a one-dimensional array containing the data in the RGBA order, with integer values between 0 and 255 (inclusive).
|