Uses of Class
org.pepstock.charba.client.data.Dataset
-
Packages that use Dataset Package Description org.pepstock.charba.client Main package with all charts implementation, global classes and common interfaces.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.gwt.widgets Contains all charts classes wrapped as GWT widget in order to enable to use inside to GWT UIBinder.org.pepstock.charba.client.impl.charts Contains METER and GAUGE charts implementations (based on controllers), available out-of-the box.org.pepstock.charba.client.matrix Contains all classes to activate the Matrix controller (AKAchartjs-chart-matrix.js
) for CHART.js.org.pepstock.charba.client.ml Contains all classes to activate the ML library to use the regression capabilities.org.pepstock.charba.client.plugins Contains all classes to manage the plugin implementations.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 Dataset in org.pepstock.charba.client
Classes in org.pepstock.charba.client with type parameters of type Dataset Modifier and Type Interface Description interface
IsDatasetCreator<D extends Dataset>
Defines the methods for creating datasets pof a specific type.
This is used by chart instances to create datasets relatedo to the chart type.Methods in org.pepstock.charba.client with parameters of type Dataset Modifier and Type Method Description protected abstract boolean
AbstractChart. checkDataset(Dataset dataset)
Returnstrue
if the dataset can be managed by a this chart type.protected boolean
AreaChart. checkDataset(Dataset dataset)
protected boolean
BarChart. checkDataset(Dataset dataset)
protected boolean
BubbleChart. checkDataset(Dataset dataset)
protected boolean
DoughnutChart. checkDataset(Dataset dataset)
protected boolean
LineChart. checkDataset(Dataset dataset)
protected boolean
PieChart. checkDataset(Dataset dataset)
protected boolean
PolarAreaChart. checkDataset(Dataset dataset)
protected boolean
RadarChart. checkDataset(Dataset dataset)
protected boolean
ScatterChart. checkDataset(Dataset dataset)
protected boolean
StackedAreaChart. checkDataset(Dataset dataset)
protected boolean
StackedBarChart. checkDataset(Dataset dataset)
protected boolean
StackedLineChart. checkDataset(Dataset dataset)
protected boolean
TimeSeriesBarChart. checkDataset(Dataset dataset)
protected boolean
TimeSeriesLineChart. checkDataset(Dataset dataset)
void
AbstractChart. checkDatasets(Dataset... datasets)
void
IsChart. checkDatasets(Dataset... datasets)
Checks if datasets, requested to be stored, are an acceptable type or amount.
If a dataset type or the amount of datasets are not consistent for the chart, aIllegalArgumentException
will be thrown. -
Uses of Dataset in org.pepstock.charba.client.data
Subclasses of Dataset in org.pepstock.charba.client.data Modifier and Type Class Description class
AreaDataset
The area chart allows a number of properties to be specified for each dataset.class
BarDataset
The bar chart allows a number of properties to be specified for each data set.class
BubbleDataset
The chart allows a number of properties to be specified for each data set.class
DoughnutDataset
The doughnut chart allows a number of properties to be specified for each dataset.class
HorizontalBarDataset
The horizontal bar chart allows a number of properties to be specified for each data set.
These are used to set display properties for a specific data set.
Some properties can be specified as an array.
If these are set to an array value, the first value applies to the first bar, the second value to the second bar, and so on.class
HoverDataset
The chart allows a number of properties to be specified for each data set.
These are used to set display properties for a specific data set.class
HoverFlexDataset
This dataset is managing some common properties related to background and border colors where every property can be set as a single value or an array.class
LineDataset
The line chart allows a number of properties to be specified for each data set.
These are used to set display properties for a specific data set.
All point* properties can be specified as an array.
If these are set to an array value, the first value applies to the first point, the second value to the second point, and so on.class
LiningDataset
The chart allows a number of properties to be specified for each data set.
These are used to set display properties for a specific data set.
This class collects a set of common field for Line and Radar charts.class
PieDataset
The pie chart allows a number of properties to be specified for each dataset.class
PolarAreaDataset
The polar area chart allows a number of properties to be specified for each dataset.class
RadarDataset
The radar chart allows a number of properties to be specified for each dataset.class
ScatterDataset
The scatter chart allows a number of properties to be specified for each dataset.class
StackedAreaDataset
The stacked area chart allows a number of properties to be specified for each dataset.class
StackedBarDataset
The stacked bar area chart allows a number of properties to be specified for each dataset.class
StackedHorizontalBarDataset
The stacked horizontal bar area chart allows a number of properties to be specified for each dataset.class
StackedLineDataset
The stacked line chart allows a number of properties to be specified for each dataset.
These are used to set display properties for a specific dataset.
Extends the line dataset.class
TimeSeriesBarDataset
The time series bar chart allows a number of properties to be specified for each dataset.class
TimeSeriesHorizontalBarDataset
The time series horizontal bar chart allows a number of properties to be specified for each dataset.class
TimeSeriesLineDataset
The time series line chart allows a number of properties to be specified for each dataset.class
VerticalLineDataset
The vertical line chart allows a number of properties to be specified for each data set.
These are used to set display properties for a specific data set.
All point* properties can be specified as an array.
If these are set to an array value, the first value applies to the first point, the second value to the second point, and so on.Methods in org.pepstock.charba.client.data that return Dataset Modifier and Type Method Description Dataset
Dataset. getDataset()
Dataset
HasDataset. getDataset()
Gets the dataset instance.Dataset
Data. retrieveDataset(DatasetContext context)
Returns a data set instance by scriptable context, data set index and index.Dataset
Data. retrieveDataset(LegendItem legendItem)
Returns a data set instance by legend item locator, data set index and index.Dataset
Data. retrieveDataset(TooltipItem tooltipItem)
Returns a data set instance by tooltip item locator, data set index and index.Methods in org.pepstock.charba.client.data that return types with arguments of type Dataset Modifier and Type Method Description List<Dataset>
Data. getDatasets()
Returns the list of data sets.List<Dataset>
Data. getDatasets(boolean binding)
Returns the list of data sets.Methods in org.pepstock.charba.client.data with parameters of type Dataset Modifier and Type Method Description void
Data. setDatasets(Dataset... datasets)
Sets a set of data sets for chart. -
Uses of Dataset in org.pepstock.charba.client.geo
Subclasses of Dataset in org.pepstock.charba.client.geo Modifier and Type Class Description class
BubbleMapDataset
It is aBubbleDataset
with additional options for bubble map charts.class
ChoroplethDataset
The choropleth data set allows a region definition (byFeature
) and specific value to be specified.Methods in org.pepstock.charba.client.geo with parameters of type Dataset Modifier and Type Method Description protected boolean
BubbleMapChart. checkDataset(Dataset dataset)
protected boolean
ChoroplethChart. checkDataset(Dataset dataset)
-
Uses of Dataset in org.pepstock.charba.client.gwt.widgets
Methods in org.pepstock.charba.client.gwt.widgets with parameters of type Dataset Modifier and Type Method Description void
AbstractChartWidget. checkDatasets(Dataset... datasets)
-
Uses of Dataset in org.pepstock.charba.client.impl.charts
Subclasses of Dataset in org.pepstock.charba.client.impl.charts Modifier and Type Class Description class
GaugeDataset
The Gauge chart allows a number of properties to be specified for each dataset.class
MeterDataset
The Meter chart allows a number of properties to be specified for each dataset.Methods in org.pepstock.charba.client.impl.charts with parameters of type Dataset Modifier and Type Method Description protected boolean
GaugeChart. checkDataset(Dataset dataset)
protected boolean
MeterChart. checkDataset(Dataset dataset)
-
Uses of Dataset in org.pepstock.charba.client.matrix
Subclasses of Dataset in org.pepstock.charba.client.matrix Modifier and Type Class Description class
MatrixDataset
The matrix data set allows to specify the values for showing magnitude of a phenomenon as color in two dimensions.
The variation in color may be by hue or intensity, giving obvious visual cues to the reader about how the phenomenon is clustered or varies over space.Methods in org.pepstock.charba.client.matrix with parameters of type Dataset Modifier and Type Method Description protected boolean
MatrixChart. checkDataset(Dataset dataset)
-
Uses of Dataset in org.pepstock.charba.client.ml
Subclasses of Dataset in org.pepstock.charba.client.ml Modifier and Type Class Description class
RegressionDataset
This is aLineDataset
which is created to add the regression line, calculate by a regression, to a chart. -
Uses of Dataset in org.pepstock.charba.client.plugins
Methods in org.pepstock.charba.client.plugins with parameters of type Dataset Modifier and Type Method Description void
AbstractPluginOptions. store(Dataset dataset)
Stores this options in the dataset options. -
Uses of Dataset in org.pepstock.charba.client.sankey
Subclasses of Dataset in org.pepstock.charba.client.sankey Modifier and Type Class Description class
SankeyDataset
Sankey charts are a type of flow diagram in which the width of the arrows is proportional to the flow rate.
Sankey diagrams emphasize the major transfers or flows within a system.
They help locate the most important contributions to a flow.
They often show conserved quantities within defined system boundaries.Methods in org.pepstock.charba.client.sankey with parameters of type Dataset Modifier and Type Method Description protected boolean
SankeyChart. checkDataset(Dataset dataset)
-
Uses of Dataset in org.pepstock.charba.client.treemap
Subclasses of Dataset in org.pepstock.charba.client.treemap Modifier and Type Class Description class
TreeMapDataset
The treemap data set allows to specify the values for displaying hierarchical data using nested rectangles.Methods in org.pepstock.charba.client.treemap with parameters of type Dataset Modifier and Type Method Description protected boolean
TreeMapChart. checkDataset(Dataset dataset)
-