Uses of Class
org.pepstock.charba.client.data.AbstractDataPoint
-
Packages that use AbstractDataPoint Package Description org.pepstock.charba.client.data Contains all elements to configure the datasets of a chart instance (know as chart data at instance level).org.pepstock.charba.client.geo Contains all classes to activate the GEO controllers (AKAchartjs-chart-geo.js
) for CHART.js.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 AbstractDataPoint in org.pepstock.charba.client.data
Subclasses of AbstractDataPoint in org.pepstock.charba.client.data Modifier and Type Class Description class
AbstractXYDataPoint
Maps the common methods for a data point with X and Y properties.class
DataPoint
Used for sparse datasets, such as those in scatter charts.class
TimeSeriesItem
Default implementation for time series item interface in order to manage time series item (time and value). -
Uses of AbstractDataPoint in org.pepstock.charba.client.geo
Subclasses of AbstractDataPoint in org.pepstock.charba.client.geo Modifier and Type Class Description class
BubbleMapDataPoint
Used for BubbleMap data sets to set the data to render.
A data has to have alatitude
andlongitude
properties and avalue
property containing the value for the coloring.class
ChoroplethDataPoint
Used for GEO data sets to set the data to render.
A GEO data has to have afeature
property containing the feature to render and avalue
property containing the value for the coloring. -
Uses of AbstractDataPoint in org.pepstock.charba.client.matrix
Subclasses of AbstractDataPoint in org.pepstock.charba.client.matrix Modifier and Type Class Description class
MatrixDataPoint
Maps the data passed to a matrix dataset. -
Uses of AbstractDataPoint in org.pepstock.charba.client.sankey
Subclasses of AbstractDataPoint in org.pepstock.charba.client.sankey Modifier and Type Class Description class
SankeyDataPoint
Maps the data passed to a sankey dataset. -
Uses of AbstractDataPoint in org.pepstock.charba.client.treemap
Subclasses of AbstractDataPoint in org.pepstock.charba.client.treemap Modifier and Type Class Description class
TreeMapDataPoint
Used for treemap datasets.
-