Uses of Class
org.pepstock.charba.client.commons.NativeArrayContainer
-
Packages that use NativeArrayContainer 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). -
-
Uses of NativeArrayContainer in org.pepstock.charba.client.commons
Classes in org.pepstock.charba.client.commons with type parameters of type NativeArrayContainer Modifier and Type Class Description class
ArrayDoubleArrayList<E extends NativeArrayContainer<ArrayDouble>>
An ordered collection (also known as a sequence).interface
NativeArrayContainerFactory<A extends Array,T extends NativeArrayContainer<A>>
Interface to be implemented to load elements from an array of native array.Subclasses of NativeArrayContainer in org.pepstock.charba.client.commons Modifier and Type Class Description class
NativeArrayDoubleContainer
Extends the base class of an array container where the wrapped array is an array of doubles.Methods in org.pepstock.charba.client.commons with type parameters of type NativeArrayContainer Modifier and Type Method Description static <E extends NativeArrayContainer<ArrayDouble>>
ArrayDoubleArrayArrayDoubleArray. fromOrEmpty(E item)
Creates a java script array of arrays starting from a native array containers and the array will have ONE 1 element.static <E extends NativeArrayContainer<ArrayDouble>>
ArrayDoubleArrayArrayDoubleArray. fromOrEmpty(E[] items)
Creates a java script array of arrays starting from an array of native array containers.static <E extends NativeArrayContainer<ArrayDouble>>
ArrayDoubleArrayArrayDoubleArray. fromOrEmpty(List<E> items)
Creates a java script array of arrays starting from a list of native array containers.static <E extends NativeArrayContainer<ArrayDouble>>
ArrayDoubleArrayArrayDoubleArray. fromOrNull(E item)
Creates a java script array of arrays starting from a native array containers and the array will have ONE 1 element.static <E extends NativeArrayContainer<ArrayDouble>>
ArrayDoubleArrayArrayDoubleArray. fromOrNull(E[] items)
Creates a java script array of arrays starting from an array of native array containers.static <E extends NativeArrayContainer<ArrayDouble>>
ArrayDoubleArrayArrayDoubleArray. fromOrNull(List<E> items)
Creates a java script array of arrays starting from a list of native array containers.static <E extends NativeArrayContainer<ArrayDouble>>
ArrayDoubleArrayList<E>ArrayListHelper. list(ArrayDoubleArray array, NativeArrayContainerFactory<ArrayDouble,E> factory)
Creates a array list of java script native double array container by a java script array and a factory.static <E extends NativeArrayContainer<ArrayDouble>>
List<E>ArrayListHelper. unmodifiableList(ArrayDoubleArray array, NativeArrayContainerFactory<ArrayDouble,E> factory)
Creates an unmodifiable array list of java script native double array container by a java script array and a factory.Methods in org.pepstock.charba.client.commons with parameters of type NativeArrayContainer Modifier and Type Method Description static <E extends NativeArrayContainer<ArrayDouble>>
ArrayDoubleArrayArrayDoubleArray. fromOrEmpty(E[] items)
Creates a java script array of arrays starting from an array of native array containers.static <E extends NativeArrayContainer<ArrayDouble>>
ArrayDoubleArrayArrayDoubleArray. fromOrNull(E[] items)
Creates a java script array of arrays starting from an array of native array containers.protected void
NativeObjectContainer. setValue(Key key, NativeArrayContainer<?> value)
Sets a value (JavaScript Object) in the embedded JavaScript object at specific property by array container.protected void
AbstractNode. setValueAndAddToParent(Key key, NativeArrayContainer<?> value)
Sets a value (JavaScript Object) in the embedded JavaScript object at specific property by array container.protected void
PropertyHandler. setValueAndAddToParent(Key key, NativeArrayContainer<?> value)
Sets a value (JavaScript Object) in the embedded JavaScript object at specific property by array container. -
Uses of NativeArrayContainer in org.pepstock.charba.client.data
Subclasses of NativeArrayContainer in org.pepstock.charba.client.data Modifier and Type Class Description class
FloatingData
Specifies the dataset for a bar chart as a pair of two numbers.
This will force rendering of bars with gaps between them (floating-bars).
First and second numbers will correspond the start and the end points of a bar respectively.
-