Package | Description |
---|---|
org.pepstock.charba.client.configuration |
Contains all elements to configure a chart instance (know as chart options at instance level).
|
Modifier and Type | Method and Description |
---|---|
ColorCallback<SegmentContext> |
Segment.getBackgroundColorCallback()
Returns the background width callback, if set, otherwise
null . |
CapStyleCallback<SegmentContext> |
Segment.getBorderCapStyleCallback()
Returns the border cap-style callback, if set, otherwise
null . |
ColorCallback<SegmentContext> |
Segment.getBorderColorCallback()
Returns the border width callback, if set, otherwise
null . |
BorderDashCallback<SegmentContext> |
Segment.getBorderDashCallback()
Returns the border dash callback, if set, otherwise
null . |
BorderDashOffsetCallback<SegmentContext> |
Segment.getBorderDashOffsetCallback()
Returns the border dash callback, if set, otherwise
null . |
JoinStyleCallback<SegmentContext> |
Segment.getBorderJoinStyleCallback()
Returns the border join-style callback, if set, otherwise
null . |
WidthCallback<SegmentContext> |
Segment.getBorderWidthCallback()
Returns the border width callback, if set, otherwise
null . |
Modifier and Type | Method and Description |
---|---|
void |
Segment.setBackgroundColor(ColorCallback<SegmentContext> backgroundColorCallback)
Sets the background color callback.
|
void |
Segment.setBorderCapStyle(CapStyleCallback<SegmentContext> borderCapStyleCallback)
Sets the border cap-style callback.
|
void |
Segment.setBorderColor(ColorCallback<SegmentContext> borderColorCallback)
Sets the border color callback.
|
void |
Segment.setBorderDash(BorderDashCallback<SegmentContext> borderDashCallback)
Sets the border dash callback.
|
void |
Segment.setBorderDashOffset(BorderDashOffsetCallback<SegmentContext> borderDashOffsetCallback)
Sets the border dash callback.
|
void |
Segment.setBorderJoinStyle(JoinStyleCallback<SegmentContext> borderJoinStyleCallback)
Sets the border join-style callback.
|
void |
Segment.setBorderWidth(WidthCallback<SegmentContext> borderWidthCallback)
Sets the border width callback.
|