Uses of Interface
org.pepstock.charba.client.callbacks.BorderDashCallback
-
Packages that use BorderDashCallback Package Description org.pepstock.charba.client.annotation Contains all classes to activate theAnnotationPlugin.ID
plugin (AKAchartjs-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). -
-
Uses of BorderDashCallback in org.pepstock.charba.client.annotation
Methods in org.pepstock.charba.client.annotation that return BorderDashCallback Modifier and Type Method 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.BorderDashCallback<AnnotationContext>
LineLabel. 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.Methods in org.pepstock.charba.client.annotation with parameters of type BorderDashCallback Modifier and Type Method 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.void
LineLabel. 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. -
Uses of BorderDashCallback in org.pepstock.charba.client.configuration
Methods in org.pepstock.charba.client.configuration that return BorderDashCallback Modifier and Type Method Description BorderDashCallback<DatasetContext>
Line. getBorderDashCallback()
Returns the border dash callback, if set, otherwisenull
.BorderDashCallback<ScaleContext>
RadialAngleLines. getBorderDashCallback()
Returns the border dash callback when element is hovered, if set, otherwisenull
.BorderDashCallback<SegmentContext>
Segment. getBorderDashCallback()
Returns the border dash callback, if set, otherwisenull
.Methods in org.pepstock.charba.client.configuration with parameters of type BorderDashCallback Modifier and Type Method 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. -
Uses of BorderDashCallback in org.pepstock.charba.client.data
Methods in org.pepstock.charba.client.data that return BorderDashCallback Modifier and Type Method Description BorderDashCallback<DatasetContext>
LiningDataset. getBorderDashCallback()
Returns the border dash callback, if set, otherwisenull
.BorderDashCallback<DatasetContext>
LiningDataset. getHoverBorderDashCallback()
Returns the border dash callback when element is hovered, if set, otherwisenull
.Methods in org.pepstock.charba.client.data with parameters of type BorderDashCallback Modifier and Type Method 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.
-