Uses of Class
org.pepstock.charba.client.commons.AbstractReadOnlyPoint
-
Packages that use AbstractReadOnlyPoint 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.geo Contains all classes to activate the GEO controllers (AKAchartjs-chart-geo.js
) for CHART.js.org.pepstock.charba.client.items Contains all elements generated by CHART.JS, which are mapping java script objects, to use at runtime in plugins, events or controllers.org.pepstock.charba.client.positioner Contains all classes to implement a custom tooltip positioner for CHART.JS.org.pepstock.charba.client.zoom Contains all classes to activate theZoomPlugin.ID
plugin (AKAchartjs-plugin-zoom.js
) for CHART.js. -
-
Uses of AbstractReadOnlyPoint in org.pepstock.charba.client
Subclasses of AbstractReadOnlyPoint in org.pepstock.charba.client Modifier and Type Class Description class
EventPoint
This object is wrapping the native java script object provided byHelpers
to know the position of the event on the canvas. -
Uses of AbstractReadOnlyPoint in org.pepstock.charba.client.commons
Subclasses of AbstractReadOnlyPoint in org.pepstock.charba.client.commons Modifier and Type Class Description class
AbstractPoint
This object is wrapping the native java script object to map a point. -
Uses of AbstractReadOnlyPoint in org.pepstock.charba.client.geo
Subclasses of AbstractReadOnlyPoint in org.pepstock.charba.client.geo Modifier and Type Class Description class
CoordinatesPoint
Contains the coordinates X and Y on the canvas, calculated byBaseGeoChart.projection(Coordinates)
andBaseGeoChart.projection(double, double)
.class
PositionPoint
This object is wrapping the native java script object to provide the position of the legend. -
Uses of AbstractReadOnlyPoint in org.pepstock.charba.client.items
Subclasses of AbstractReadOnlyPoint in org.pepstock.charba.client.items Modifier and Type Class Description class
DatasetElement
Calling some methods on your chart instance passing an argument of an event, will return the elements at the event position.
The elements are mapped by this object.
This is the CHART.JS item with all needed info about a selected data set.
This object has been created and passed to event handler or callbacks to apply own logic.class
DatasetPoint
It wraps the parsed data values for the given item point.class
Parsed
This object is wrapping the native java script object provided byDatasetElement
to know the parsed value.class
TooltipModel
This object is passed by CHART.JS to the callback to manage tooltip custom callback.
The tooltip label configuration is nested below the tooltip configuration using the callbacks key. -
Uses of AbstractReadOnlyPoint in org.pepstock.charba.client.positioner
Subclasses of AbstractReadOnlyPoint in org.pepstock.charba.client.positioner Modifier and Type Class Description class
Point
This object is wrapping the native java script object provided by tooltip positioner to know the position of the event in canvas coordinates. -
Uses of AbstractReadOnlyPoint in org.pepstock.charba.client.zoom
Subclasses of AbstractReadOnlyPoint in org.pepstock.charba.client.zoom Modifier and Type Class Description class
Amount
This object is wrapping the native java script object to set the position to pan the chart.class
EventPoint
This object is wrapping the native java script object provided byZoomContext
to know the position of the event when pan or zoom are about to start.
-