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.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 |
IsDefaultLine.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 dataset object which can be used to create area between two datasets
or a dataset 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 |
---|---|
protected IsFill |
Filler.getDefaultValue()
Returns the default value of FILL to use when the property does not exist.
|
default IsFill |
HasFill.getFill()
Returns how to fill the area under the line.
|
IsFill |
Filler.getFill()
Returns how to fill the area under the line.
|
static IsFill |
Fill.getFill(int index)
Returns a fill, based on absolute dataset index, using the passed index.
|
static IsFill |
Fill.getFill(String index)
Returns a fill, based on relative dataset index, using the passed index.
If the passed argument is not a relative dataset 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. |
default void |
HasFill.setFill(IsFill fill)
Sets how to fill the area under the line.
|
void |
Filler.setFill(IsFill fill)
Sets how to fill the area under the line.
|
Constructor and Description |
---|
Filler(NativeObject nativeObject,
IsFill defaultValue)
Creates a filler with the native object where FILL property must be managed and the default value to use when the
property does not exist.
|
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.
|