public interface HasFill extends IsDefaultFillHandler
Modifier and Type | Method and Description |
---|---|
default IsFill |
getFill()
Returns how to fill the area under the line.
|
FillHandler |
getFillHandler()
Returns a fill handler instance to use in the default methods of this interface.
|
default void |
setFill(boolean fill)
Sets how to fill the area under the line.
|
default void |
setFill(int index)
Sets how to fill the area under the line, by absolute dataset index.
|
default void |
setFill(IsFill fill)
Sets how to fill the area under the line.
|
default void |
setFill(String index)
Sets how to fill the area under the line, by relative dataset index.
|
FillHandler getFillHandler()
default void setFill(boolean fill)
fill
- true
to fill, otherwise false
.default void setFill(int index)
index
- absolute dataset index of the chart.default void setFill(String index)
index
- relative dataset index of the chart.default void setFill(IsFill fill)
fill
- how to fill the area under the line.default IsFill getFill()
getFill
in interface IsDefaultFillHandler