Package | Description |
---|---|
org.pepstock.charba.client.annotation |
Contains all classes to activate the
AnnotationPlugin#ID plugin (AKA chartjs-plugin-annotation.js ) for CHART.js. |
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).
|
Modifier and Type | Method and Description |
---|---|
BorderDashCallback<AnnotationContext> |
AbstractAnnotation.getBorderDashCallback()
Returns the callback called to set the line dash pattern used when stroking lines, using an array of values which specify alternating lengths of lines and gaps which
describe the pattern.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractAnnotation.setBorderDash(BorderDashCallback<AnnotationContext> borderDashCallback)
Sets the callback to set the line dash pattern used when stroking lines, using an array of values which specify alternating lengths of lines and gaps which describe the
pattern.
|
Modifier and Type | Method and Description |
---|---|
BorderDashCallback<SegmentContext> |
Segment.getBorderDashCallback()
Returns the border dash callback, if set, otherwise
null . |
BorderDashCallback<ScaleContext> |
RadialAngleLines.getBorderDashCallback()
Returns the border dash callback when element is hovered, if set, otherwise
null . |
BorderDashCallback<DatasetContext> |
Line.getBorderDashCallback()
Returns the border dash callback, if set, otherwise
null . |
Modifier and Type | Method and Description |
---|---|
void |
Line.setBorderDash(BorderDashCallback<DatasetContext> borderDashCallback)
Sets the border dash callback.
|
void |
RadialAngleLines.setBorderDash(BorderDashCallback<ScaleContext> borderDashCallback)
Sets the border dash callback when element is hovered.
|
void |
Segment.setBorderDash(BorderDashCallback<SegmentContext> borderDashCallback)
Sets the border dash callback.
|
Modifier and Type | Method and Description |
---|---|
BorderDashCallback<DatasetContext> |
LiningDataset.getBorderDashCallback()
Returns the border dash callback, if set, otherwise
null . |
BorderDashCallback<DatasetContext> |
LiningDataset.getHoverBorderDashCallback()
Returns the border dash callback when element is hovered, if set, otherwise
null . |
Modifier and Type | Method and Description |
---|---|
void |
LiningDataset.setBorderDash(BorderDashCallback<DatasetContext> borderDashCallback)
Sets the border dash callback.
|
void |
LiningDataset.setHoverBorderDash(BorderDashCallback<DatasetContext> borderDashCallback)
Sets the border dash callback when element is hovered.
|