Uses of Class
org.pepstock.charba.client.items.ChartElement
-
Packages that use ChartElement Package Description org.pepstock.charba.client.annotation.elements Contains theAnnotationPlugin.ID
plugin elements interfaces to use in the callbacks and events.org.pepstock.charba.client.callbacks All callbacks interfaces to be implemented, also to use the scriptable options of CHART.JS.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.matrix Contains all classes to activate the Matrix controller (AKAchartjs-chart-matrix.js
) for CHART.js.org.pepstock.charba.client.sankey Contains all classes to activate the Sankey controller (AKAchartjs-chart-sankey.js
) for CHART.js.org.pepstock.charba.client.treemap Contains all classes to activate the TreeMap controller (AKAchartjs-chart-treemap.js
) for CHART.js. -
-
Uses of ChartElement in org.pepstock.charba.client.annotation.elements
Subclasses of ChartElement in org.pepstock.charba.client.annotation.elements 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. -
Uses of ChartElement in org.pepstock.charba.client.callbacks
Methods in org.pepstock.charba.client.callbacks that return ChartElement Modifier and Type Method Description ChartElement
AbstractDatasetContext. getElement()
Returns theChartElement
related to the context, if there is, otherwisenull
. -
Uses of ChartElement in org.pepstock.charba.client.geo
Subclasses of ChartElement in org.pepstock.charba.client.geo Modifier and Type Class Description class
GeoFeatureElement
Calling some methods on your chart instance passing an argument of an event, will return the elements at the event position.
The geoFeature elements are mapped by this object. -
Uses of ChartElement in org.pepstock.charba.client.items
Subclasses of ChartElement in org.pepstock.charba.client.items Modifier and Type Class Description class
ArcElement
Maps the out-of-the-box CHART.JS element used to represents arcs on the charts.class
BarElement
Maps the out-of-the-box CHART.JS element used to represents bars on the charts.class
PointElement
Maps the out-of-the-box CHART.JS element used to represents points on the charts.Methods in org.pepstock.charba.client.items that return ChartElement Modifier and Type Method Description ChartElement
DatasetReference. getElement()
Returns the data set item element.ChartElement
TooltipItem. getElement()
Returns the chart element (point, arc, bar, etc.) for this tooltip item.Methods in org.pepstock.charba.client.items that return types with arguments of type ChartElement Modifier and Type Method Description List<ChartElement>
DatasetItem. getElements()
Returns a list of dataset elements.Methods in org.pepstock.charba.client.items with parameters of type ChartElement Modifier and Type Method Description ChartElementOptions
ChartElementFactory. createOptions(ChartElement parent, NativeObject nativeObject)
Creates aChartElementOptions
instance by a native object.Constructors in org.pepstock.charba.client.items with parameters of type ChartElement Constructor Description DatasetReference(AbstractDatasetContext context, ChartElement element)
Creates the item reference using a a scriptale context and a data element -
Uses of ChartElement in org.pepstock.charba.client.matrix
Subclasses of ChartElement in org.pepstock.charba.client.matrix Modifier and Type Class Description class
MatrixElement
Maps the CHART.JS element used by Matrix controller. -
Uses of ChartElement in org.pepstock.charba.client.sankey
Subclasses of ChartElement in org.pepstock.charba.client.sankey Modifier and Type Class Description class
SankeyElement
Maps the CHART.JS element used by Sankey controller. -
Uses of ChartElement in org.pepstock.charba.client.treemap
Subclasses of ChartElement in org.pepstock.charba.client.treemap Modifier and Type Class Description class
TreeMapElement
Maps the CHART.JS element used by Treemap controller.
-