Package | Description |
---|---|
org.pepstock.charba.client.callbacks |
All callbacks interfaces to be implemented, also to use the scriptable options of CHART.JS.
|
org.pepstock.charba.client.dom |
Contains all classes needed to work with DOM tree, base classes of a DOM tree.
|
Modifier and Type | Method and Description |
---|---|
double |
ScriptableFunctions.ProxyDoubleCallback.call(CallbackFunctionContext contextFunction,
NativeObject context)
Method of function to be called to provide a double property.
|
boolean |
ScriptableFunctions.ProxyBooleanCallback.call(CallbackFunctionContext contextFunction,
NativeObject context)
Method of function to be called to provide a boolean property.
|
int |
ScriptableFunctions.ProxyIntegerCallback.call(CallbackFunctionContext contextFunction,
NativeObject context)
Method of function to be called to provide a integer property.
|
String |
ScriptableFunctions.ProxyStringCallback.call(CallbackFunctionContext contextFunction,
NativeObject context)
Method of function to be called to provide a string property.
|
Object |
ScriptableFunctions.ProxyObjectCallback.call(CallbackFunctionContext contextFunction,
NativeObject context)
Method of function to be called to provide a object property.
|
NativeObject |
ScriptableFunctions.ProxyNativeObjectCallback.call(CallbackFunctionContext contextFunction,
NativeObject context)
Method of function to be called to provide a native object property.
|
Array |
ScriptableFunctions.ProxyArrayCallback.call(CallbackFunctionContext contextFunction,
NativeObject context)
Method of function to be called to provide an array property.
|
Modifier and Type | Method and Description |
---|---|
void |
BaseEventTarget.EventListenerCallback.call(CallbackFunctionContext context,
BaseNativeEvent event)
A function that is called whenever an event of the specified type occurs.
|