Package | Description |
---|---|
org.pepstock.charba.client.configuration |
Contains all elements to configure a chart instance (know as chart options at instance level).
|
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.defaults |
Contains all interfaces need to provide defaults values of the chart options.
|
org.pepstock.charba.client.defaults.chart |
Contains the default values of chart options based on type of chart instance.
|
org.pepstock.charba.client.defaults.globals |
Contains the default values of chart options for all chart types (CHART.JS options defaults).
|
org.pepstock.charba.client.enums |
Contains all enumerations of some chart options where only a specific set of values can be set.
|
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.options |
Contains all elements to configure charts at global level (know as chart global options).
|
Modifier and Type | Method and Description |
---|---|
IsFill |
Line.getFill()
Returns how to fill the area under the line.
|
Modifier and Type | Method and Description |
---|---|
void |
Line.setFill(IsFill fill)
Sets how to fill the area under the line.
|
Modifier and Type | Method and Description |
---|---|
IsFill |
LiningDataset.getFill()
Returns how to fill the area under the line.
|
Modifier and Type | Method and Description |
---|---|
void |
ScatterDataset.setFill(IsFill fill) |
Modifier and Type | Method and Description |
---|---|
IsFill |
IsDefaultFillHandler.getFill()
Returns how to fill the area under the line.
|
Modifier and Type | Method and Description |
---|---|
IsFill |
DefaultChartLine.getFill() |
Modifier and Type | Method and Description |
---|---|
IsFill |
DefaultLine.getFill() |
Modifier and Type | Class and Description |
---|---|
class |
AbsoluteDatasetIndexFill
Fill object to configure chart to use an absolute dataset index.
Absolute dataset index, as integer, is composed by integer value which must be greater than 0. Here are same examples: (1,2,3,...). |
class |
Fill
Both line and radar charts support a fill option on the data set object which can be used to create area between two data sets or a data set and a boundary.
These are the constants of predefined filling mode values. |
class |
RelativeDatasetIndexFill
Fill object to configure chart to use a relative dataset index.
Relative dataset index, as string, is composed by sign and value, both mandatory. Here are same examples: ("-1", "-2", "+1", "+2",...). |
Modifier and Type | Method and Description |
---|---|
static IsFill |
Fill.getFill(int index)
Returns a fill, based on absolute data set index, using the passed index.
|
static IsFill |
Fill.getFill(String index)
Returns a fill, based on relative data set index, using the passed index.
If the passed argument is not a relative data set index, checks if is predefined fill. |
Modifier and Type | Method and Description |
---|---|
static boolean |
Fill.isPredefined(IsFill fill)
Checks if the fill passed by argument is a predefined fill, the returns
true . |
static boolean |
IsFill.isValid(IsFill fill)
Returns
true if fill passed as argument is not null and its value is not null and its mode is not null as well. |
static Object |
IsFill.toObject(IsFill fill)
Transforms a
IsFill instance in the a CHART.JS FILL property accepted value. |
Modifier and Type | Method and Description |
---|---|
IsFill |
DatasetElementOptions.getFill()
Returns how to fill the area under the line.
|
Modifier and Type | Method and Description |
---|---|
default IsFill |
HasFill.getFill()
Returns how to fill the area under the line.
|
protected IsFill |
FillHandler.getFill()
Returns how to fill the area under the line.
|
Modifier and Type | Method and Description |
---|---|
default void |
HasFill.setFill(IsFill fill)
Sets how to fill the area under the line.
|
protected void |
FillHandler.setFill(IsFill fill)
Sets how to fill the area under the line.
|
Constructor and Description |
---|
FillHandler(AbstractNode parent,
IsFill defaultValues,
DataEnvelop<NativeObject> envelop)
Creates a fill handler with the native object where FILL property must be managed and the default value to use when the property does not exist.
This is called from data package. |