Uses of Interface
org.pepstock.charba.client.enums.IsFill
-
Packages that use IsFill 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). -
-
Uses of IsFill in org.pepstock.charba.client.configuration
Methods in org.pepstock.charba.client.configuration that return IsFill Modifier and Type Method Description IsFill
Line. getFill()
Returns how to fill the area under the line.Methods in org.pepstock.charba.client.configuration with parameters of type IsFill Modifier and Type Method Description void
Line. setFill(IsFill fill)
Sets how to fill the area under the line. -
Uses of IsFill in org.pepstock.charba.client.data
Methods in org.pepstock.charba.client.data with parameters of type IsFill Modifier and Type Method Description void
ScatterDataset. setFill(IsFill fill)
-
Uses of IsFill in org.pepstock.charba.client.defaults
Methods in org.pepstock.charba.client.defaults that return IsFill Modifier and Type Method Description IsFill
IsDefaultFillHandler. getFill()
Returns how to fill the area under the line. -
Uses of IsFill in org.pepstock.charba.client.defaults.chart
Methods in org.pepstock.charba.client.defaults.chart that return IsFill Modifier and Type Method Description IsFill
DefaultChartLine. getFill()
-
Uses of IsFill in org.pepstock.charba.client.defaults.globals
Methods in org.pepstock.charba.client.defaults.globals that return IsFill Modifier and Type Method Description IsFill
DefaultLine. getFill()
-
Uses of IsFill in org.pepstock.charba.client.enums
Classes in org.pepstock.charba.client.enums that implement IsFill Modifier and Type Class 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",...).Methods in org.pepstock.charba.client.enums that return IsFill Modifier and Type Method 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.Methods in org.pepstock.charba.client.enums with parameters of type IsFill Modifier and Type Method Description static boolean
Fill. isPredefined(IsFill fill)
Checks if the fill passed by argument is a predefined fill, the returnstrue
.static boolean
IsFill. isValid(IsFill fill)
Returnstrue
if fill passed as argument is notnull
and its value is notnull
and its mode is notnull
as well.static Object
IsFill. toObject(IsFill fill)
Transforms aIsFill
instance in the a CHART.JS FILL property accepted value. -
Uses of IsFill in org.pepstock.charba.client.options
Methods in org.pepstock.charba.client.options that return IsFill Modifier and Type Method Description protected IsFill
FillHandler. getFill()
Returns how to fill the area under the line.default IsFill
HasFill. getFill()
Returns how to fill the area under the line.Methods in org.pepstock.charba.client.options with parameters of type IsFill Modifier and Type Method Description protected void
FillHandler. setFill(IsFill fill)
Sets how to fill the area under the line.default void
HasFill. setFill(IsFill fill)
Sets how to fill the area under the line.Constructors in org.pepstock.charba.client.options with parameters of type IsFill Constructor 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 fromdata
package.FillHandler(AbstractNode parent, IsFill defaultValues, ItemsEnvelop<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 fromitems
package.
-