Uses of Interface
org.pepstock.charba.client.commons.IsPoint
-
Packages that use IsPoint Package Description org.pepstock.charba.client Main package with all charts implementation, global classes and common interfaces.org.pepstock.charba.client.annotation.elements Contains theAnnotationPlugin.ID
plugin elements interfaces to use in the callbacks and events.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.geo Contains all classes to activate the GEO controllers (AKAchartjs-chart-geo.js
) for CHART.js.org.pepstock.charba.client.gwt.widgets Contains all charts classes wrapped as GWT widget in order to enable to use inside to GWT UIBinder.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 IsPoint in org.pepstock.charba.client
Classes in org.pepstock.charba.client that implement IsPoint 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.Methods in org.pepstock.charba.client with parameters of type IsPoint Modifier and Type Method Description void
AbstractChart. setTooltipActiveElements(IsPoint point, List<ActiveDatasetElement> elements)
Sets the active tooltip elements for the chart.void
AbstractChart. setTooltipActiveElements(IsPoint point, ActiveDatasetElement... elements)
Sets the active tooltip elements for the chart.void
IsChart. setTooltipActiveElements(IsPoint point, List<ActiveDatasetElement> elements)
Sets the active tooltip elements for the chart.void
IsChart. setTooltipActiveElements(IsPoint point, ActiveDatasetElement... elements)
Sets the active tooltip elements for the chart. -
Uses of IsPoint in org.pepstock.charba.client.annotation.elements
Classes in org.pepstock.charba.client.annotation.elements that implement IsPoint Modifier and Type Class Description class
AnnotationElement
Maps all properties of the annotation element, the implementation of the annotation options in the plugin.
It provides all dimensions of the element and sub elements.Methods in org.pepstock.charba.client.annotation.elements that return IsPoint Modifier and Type Method Description IsPoint
AnnotationElement. getCenterPoint()
Returns the center point of the element.IsPoint
AnnotationElement. getCenterPoint(boolean useFinalPosition)
Returns the center point of the element.Methods in org.pepstock.charba.client.annotation.elements with parameters of type IsPoint Modifier and Type Method Description boolean
AnnotationElement. inRange(IsPoint point)
Returns whether the coordinates, passed as arguments, are inside the element or not.boolean
AnnotationElement. inRange(IsPoint point, boolean useFinalPosition)
Returns whether the coordinates, passed as arguments, are inside the element or not. -
Uses of IsPoint in org.pepstock.charba.client.commons
Classes in org.pepstock.charba.client.commons that implement IsPoint Modifier and Type Class Description class
AbstractPoint
This object is wrapping the native java script object to map a point.class
AbstractReadOnlyPoint
This object is wrapping the native java script object to map a point, in READ-ONLY mode. -
Uses of IsPoint in org.pepstock.charba.client.events
Classes in org.pepstock.charba.client.events that implement IsPoint Modifier and Type Class Description class
ChartEventContext
This is the class which can wrap a CHART.JS event. -
Uses of IsPoint in org.pepstock.charba.client.geo
Classes in org.pepstock.charba.client.geo that implement IsPoint 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 IsPoint in org.pepstock.charba.client.gwt.widgets
Methods in org.pepstock.charba.client.gwt.widgets with parameters of type IsPoint Modifier and Type Method Description void
AbstractChartWidget. setTooltipActiveElements(IsPoint point, List<ActiveDatasetElement> elements)
void
AbstractChartWidget. setTooltipActiveElements(IsPoint point, ActiveDatasetElement... elements)
-
Uses of IsPoint in org.pepstock.charba.client.items
Classes in org.pepstock.charba.client.items that implement IsPoint 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 IsPoint in org.pepstock.charba.client.positioner
Classes in org.pepstock.charba.client.positioner that implement IsPoint 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 IsPoint in org.pepstock.charba.client.zoom
Classes in org.pepstock.charba.client.zoom that implement IsPoint 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.
-