| 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.items | 
 Contains all elements generated by CHART.JS, which are mapping java script objects, to use at runtime in plugins, events or controllers. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
FloatingData | 
FloatingDatatFactory.create(ArrayDouble nativeArray)  | 
FloatingData | 
DataPoint.getYAsFloatingData()
Returns Y value. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
List<FloatingData> | 
BarDataset.getFloatingData()
Returns the data property of a data set for a chart is specified as an array of floating data. 
 | 
List<FloatingData> | 
BarDataset.getFloatingData(boolean binding)
Returns the data property of a data set for a chart is specified as an array of floating data. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
BarDataset.setFloatingData(FloatingData... floatingData)
Sets the data property of a data set for a chart is specified as an array of floating data. 
 | 
void | 
DataPoint.setY(FloatingData y)
Sets Y value. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
BarDataset.setFloatingData(List<FloatingData> floatingData)
Sets the data property of a data set for a chart is specified as an array of floating data. 
 | 
| Constructor and Description | 
|---|
DataPoint(Date x,
         FloatingData y)
Creates the object with the passed point values. 
 | 
DataPoint(double x,
         FloatingData y)
Creates the object with the passed point values. 
 | 
DataPoint(String x,
         FloatingData y)
Creates the object with the passed point values. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
FloatingData | 
DataItem.getValueAsFloatingData()
Returns the value for the data set as  
FloatingData if it is or null. |