Uses of Class
org.pepstock.charba.client.data.DataPoint
-
Packages that use DataPoint 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.items Contains all elements generated by CHART.JS, which are mapping java script objects, to use at runtime in plugins, events or controllers. -
-
Uses of DataPoint in org.pepstock.charba.client.data
Methods in org.pepstock.charba.client.data that return types with arguments of type DataPoint Modifier and Type Method Description default List<DataPoint>HasDataPoints. getDataPoints()Returns the data property of a dataset for a chart is specified as an array of data pointsdefault List<DataPoint>HasDataPoints. getDataPoints(boolean binding)Returns the data property of a dataset for a chart is specified as an array of data pointsMethods in org.pepstock.charba.client.data with parameters of type DataPoint Modifier and Type Method Description static booleanHasTimeSeriesItems. isTimeSeriesItem(DataPoint datapoint)Returnstrueif the data point, passed as argument, has got the properties to be a time series item (time and Y value).default voidHasDataPoints. setDataPoints(DataPoint... datapoints)Sets the data property of a dataset for a chart is specified as an array of data points.default voidHasTimeSeriesItems. setDataPoints(DataPoint... datapoints)Sets the data property of a dataset for a chart is specified as an array of data points.Method parameters in org.pepstock.charba.client.data with type arguments of type DataPoint Modifier and Type Method Description static voidHasTimeSeriesItems. checkTimeSeriesItems(List<DataPoint> datapoints)Checks if the list of data points, passed as argument, have got the properties to be time series items (time and Y value).
If not, aIllegalArgumentExceptionwill be thrown.default voidHasDataPoints. setDataPoints(List<DataPoint> datapoints)Sets the data property of a dataset for a chart is specified as an array of data points.default voidHasTimeSeriesItems. setDataPoints(List<DataPoint> datapoints)Sets the data property of a dataset for a chart is specified as an array of data points. -
Uses of DataPoint in org.pepstock.charba.client.geo
Methods in org.pepstock.charba.client.geo that return types with arguments of type DataPoint Modifier and Type Method Description List<DataPoint>BubbleMapDataset. getDataPoints(boolean binding)Throws an exception because not available.Methods in org.pepstock.charba.client.geo with parameters of type DataPoint Modifier and Type Method Description voidBubbleMapDataset. setDataPoints(DataPoint... datapoints)Throws an exception because not available.Method parameters in org.pepstock.charba.client.geo with type arguments of type DataPoint Modifier and Type Method Description voidBubbleMapDataset. setDataPoints(List<DataPoint> datapoints)Throws an exception because not available. -
Uses of DataPoint in org.pepstock.charba.client.items
Methods in org.pepstock.charba.client.items that return DataPoint Modifier and Type Method Description DataPointDataItem. getValueAsDataPoint()Returns the value for the data set asDataPointif it is ornull.
-