Package | Description |
---|---|
org.pepstock.charba.client.commons |
Core classes to manage the inter-operations with java script code.
|
org.pepstock.charba.client.dom |
Contains all classes needed to work with DOM tree, base classes of a DOM tree.
|
org.pepstock.charba.client.options |
Contains all elements to configure charts at global level (know as chart global options).
|
Modifier and Type | Method and Description |
---|---|
CallbackProxy.Proxy |
CallbackProxy.getProxy()
Gets the function
proxy implemented into additional java script source. |
Modifier and Type | Method and Description |
---|---|
protected void |
NativeObjectContainer.setValue(Key key,
CallbackProxy.Proxy value)
Sets a value (callback proxy function) into embedded JavaScript object at specific property.
|
Modifier and Type | Method and Description |
---|---|
void |
BaseEventTarget.addEventListener(String type,
CallbackProxy.Proxy listener)
Sets up a function that will be called whenever the specified event is delivered to the target.
|
void |
BaseEventTarget.removeEventListener(String type,
CallbackProxy.Proxy listener)
Removes from the event target an event listener previously registered.
The event listener to be removed is identified using a combination of the event type and the event listener function itself. |
Modifier and Type | Method and Description |
---|---|
void |
ExtendedScale.setCallback(AbstractTick<?,?> tick,
Key property,
CallbackProxy.Proxy proxy)
Adds a callback proxy function to tick element instance.
|
void |
ExtendedScale.setCallback(Key property,
CallbackProxy.Proxy proxy)
This method adds new callback function proxy to the element, as property of native java script object.
|
void |
ExtendedOptions.setCallback(Key property,
CallbackProxy.Proxy proxy)
This method adds new callback function proxy to the element, as property of native java script object.
|
void |
ExtendedOptions.setCallback(LegendLabels labels,
Key property,
CallbackProxy.Proxy proxy)
Adds a event proxy function to legend labels element instance.
|
void |
ExtendedScale.setCallback(PointLabels pointLabels,
Key property,
CallbackProxy.Proxy proxy)
Adds a callback proxy function to point labels element instance.
|
void |
ExtendedOptions.setCallback(TooltipsCallbacks tooltips,
Key property,
CallbackProxy.Proxy proxy)
Adds a event proxy function to tooltips callbacks element instance.
|
void |
ExtendedOptions.setCallback(Tooltips tooltips,
Key property,
CallbackProxy.Proxy proxy)
Adds a event proxy function to tooltips element instance.
|
void |
ExtendedOptions.setEvent(Animation animation,
Key property,
CallbackProxy.Proxy proxy)
Adds a event proxy function to animation element instance.
|
void |
ExtendedOptions.setEvent(Key property,
CallbackProxy.Proxy proxy)
This method adds new event function proxy to the element, as property of native java script object.
|
void |
ExtendedOptions.setEvent(Legend legend,
Key property,
CallbackProxy.Proxy proxy)
Adds a event proxy function to legend element instance.
|