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.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). -
-
Uses of IsFill in org.pepstock.charba.client.configuration
Methods in org.pepstock.charba.client.configuration that return IsFill Modifier and Type Method Description IsFillLine. 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 voidLine. 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 that return IsFill Modifier and Type Method Description IsFillLiningDataset. getFill()Returns how to fill the area under the line.Methods in org.pepstock.charba.client.data with parameters of type IsFill Modifier and Type Method Description voidScatterDataset. 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 IsFillIsDefaultFillHandler. 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 IsFillDefaultChartLine. 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 IsFillDefaultLine. 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 classAbsoluteDatasetIndexFillFill 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,...).classFillBoth 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.classRelativeDatasetIndexFillFill 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 IsFillFill. getFill(int index)Returns a fill, based on absolute data set index, using the passed index.static IsFillFill. 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 booleanFill. isPredefined(IsFill fill)Checks if the fill passed by argument is a predefined fill, the returnstrue.static booleanIsFill. isValid(IsFill fill)Returnstrueif fill passed as argument is notnulland its value is notnulland its mode is notnullas well.static ObjectIsFill. toObject(IsFill fill)Transforms aIsFillinstance in the a CHART.JS FILL property accepted value. -
Uses of IsFill in org.pepstock.charba.client.items
Methods in org.pepstock.charba.client.items that return IsFill Modifier and Type Method Description IsFillDatasetElementOptions. getFill()Returns how to fill the area under the line. -
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 IsFillFillHandler. getFill()Returns how to fill the area under the line.default IsFillHasFill. 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 voidFillHandler. setFill(IsFill fill)Sets how to fill the area under the line.default voidHasFill. 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 fromdatapackage.
-