public interface HasFill
| Modifier and Type | Method and Description |
|---|---|
default IsFill |
getFill()
Returns how to fill the area under the line.
|
Filler |
getFiller()
Returns a filler instance to use into 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.
|
Filler getFiller()
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()