public interface HasSpanGaps
Modifier and Type | Method and Description |
---|---|
SpanGapHandler |
getSpanGapHandler()
Returns a span gap handler instance to use in the default methods of this interface.
|
default double |
getSpanGaps()
Returns the value of the data if lines will be drawn between points with no or null data.
|
default boolean |
isSpanGaps()
Returns if lines will be drawn between points with no or null data.
If false , points with Double.NaN data will create a break in the line. |
default void |
setSpanGaps(boolean spanGaps)
Sets if lines will be drawn between points with no or null data.
If false , points with Double.NaN data will create a break in the line. |
default void |
setSpanGaps(double spanGaps)
Sets the value of the data if lines will be drawn between points with no or null data.
|
SpanGapHandler getSpanGapHandler()
default void setSpanGaps(boolean spanGaps)
false
, points with Double.NaN
data will create a break in the line.spanGaps
- true
if lines will be drawn between points with no or null data.false
, points with Double.NaN
data will create a break in the linedefault void setSpanGaps(double spanGaps)
spanGaps
- the value of the data if lines will be drawn between points with no or null datadefault boolean isSpanGaps()
false
, points with Double.NaN
data will create a break in the line.true
if lines will be drawn between points with no or null data.false
, points with Double.NaN
data will create a break in the linedefault double getSpanGaps()