Uses of Class
org.pepstock.charba.client.Chart
-
Packages that use Chart Package Description org.pepstock.charba.client Main package with all charts implementation, global classes and common interfaces.org.pepstock.charba.client.commons Core classes to manage the inter-operations with java script code.org.pepstock.charba.client.events Contains all events to interact with chart instance.org.pepstock.charba.client.interaction Contains all classes to implement a custom interactions for CHART.JS.org.pepstock.charba.client.plugins.hooks Contains all hooks interfaces used bySmartPlugin
in order to activate a custom plugin. -
-
Uses of Chart in org.pepstock.charba.client
Methods in org.pepstock.charba.client that return Chart Modifier and Type Method Description static Chart
Charts. getNative(String chartId)
Returns the CHART.JS chart instance by id.static Chart
Charts. getNative(IsChart chart)
Returns the CHART.JS chart instance by chart instance.Methods in org.pepstock.charba.client with parameters of type Chart Modifier and Type Method Description List<LegendLabelItem>
Defaults. generateLabels(Chart chart)
Returns an unmodifiable list of legend labels for that chart with the callback provided by CHART.JS out of the box.default void
Plugin. onAfterInit(IsChart chart, Chart nativeChart)
Called after 'chart' has been initialized and before the first update.Constructors in org.pepstock.charba.client with parameters of type Chart Constructor Description ChartNode(String chartId, Chart chart)
Creates the object wrapping a CHART instance. -
Uses of Chart in org.pepstock.charba.client.commons
Methods in org.pepstock.charba.client.commons that return Chart Modifier and Type Method Description Chart
ArrayChart. get(int index)
Gets the value at a given index.protected Chart
NativeObjectContainer. getNativeChart(Key key)
Returns a value (chart) in the embedded JavaScript object at specific property.Methods in org.pepstock.charba.client.commons with parameters of type Chart Modifier and Type Method Description protected void
NativeObjectContainer. setValue(Key key, Chart value)
Sets a value (chart) in the embedded JavaScript object at specific property.protected void
AbstractNode. setValueAndAddToParent(Key key, Chart value)
Sets a value (chart) in the embedded JavaScript object at specific property.protected void
PropertyHandler. setValueAndAddToParent(Key key, Chart value)
Sets a value (chart) in the embedded JavaScript object at specific property. -
Uses of Chart in org.pepstock.charba.client.events
Methods in org.pepstock.charba.client.events that return Chart Modifier and Type Method Description Chart
ChartEventContext. getNativeChart()
Returns the CHARBA chart instance.Constructors in org.pepstock.charba.client.events with parameters of type Chart Constructor Description ChartEventContext(IsChart chart, Chart nativeChart)
Creates the object with the chart instance, creating a change native event. -
Uses of Chart in org.pepstock.charba.client.interaction
Methods in org.pepstock.charba.client.interaction with parameters of type Chart Modifier and Type Method Description ArrayObject
ExtendedInteraction. call(Chart chart, NativeObject event, NativeObject options, boolean useFinalPosition)
Method of function to be called to invoke a custom interaction mode.ArrayObject
NativeInteraction. call(Chart chart, NativeObject event, NativeObject options, boolean useFinalPosition)
Method of function to be called to invoke a custom interactioner. -
Uses of Chart in org.pepstock.charba.client.plugins.hooks
Methods in org.pepstock.charba.client.plugins.hooks with parameters of type Chart Modifier and Type Method Description void
AfterInitHook. onAfterInit(IsChart chart, Chart nativeChart)
Called after 'chart' has been initialized and before the first update.
-