Uses of Interface
org.pepstock.charba.client.callbacks.WidthCallback
-
Packages that use WidthCallback 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).org.pepstock.charba.client.datalabels Contains all classes to activate theDataLabelsPlugin.ID
plugin (AKAchartjs-plugin-datalabels.js
) for CHART.js.org.pepstock.charba.client.geo Contains all classes to activate the GEO controllers (AKAchartjs-chart-geo.js
) for CHART.js. -
-
Uses of WidthCallback in org.pepstock.charba.client.annotation
Methods in org.pepstock.charba.client.annotation that return WidthCallback Modifier and Type Method Description WidthCallback<AnnotationContext>
Arrow. getWidthCallback()
Returns the callback called to set the amount of pixels of the width of the arrow head.Methods in org.pepstock.charba.client.annotation with parameters of type WidthCallback Modifier and Type Method Description void
Arrow. setWidth(WidthCallback<AnnotationContext> widthCallback)
Sets the callback to set the amount of pixels of the width of the arrow head. -
Uses of WidthCallback in org.pepstock.charba.client.configuration
Methods in org.pepstock.charba.client.configuration that return WidthCallback Modifier and Type Method Description WidthCallback<SegmentContext>
Segment. getBorderWidthCallback()
Returns the border width callback, if set, otherwisenull
.WidthCallback<ScaleContext>
Grid. getTickWidthCallback()
Returns the tick width callback instance.Methods in org.pepstock.charba.client.configuration with parameters of type WidthCallback Modifier and Type Method Description void
Segment. setBorderWidth(WidthCallback<SegmentContext> borderWidthCallback)
Sets the border width callback.void
Grid. setTickWidth(WidthCallback<ScaleContext> tickWidthCallback)
Sets the tick width callback instance. -
Uses of WidthCallback in org.pepstock.charba.client.data
Methods in org.pepstock.charba.client.data that return WidthCallback Modifier and Type Method Description WidthCallback<DatasetContext>
HoverDataset. getBorderWidthCallback()
Returns the border width callback, if set, otherwisenull
.WidthCallback<DatasetContext>
LiningDataset. getBorderWidthCallback()
Returns the border width callback, if set, otherwisenull
.WidthCallback<DatasetContext>
HoverDataset. getHoverBorderWidthCallback()
Returns the hover border width callback, if set, otherwisenull
.WidthCallback<DatasetContext>
LiningDataset. getHoverBorderWidthCallback()
Returns the hover border width callback, if set, otherwisenull
.WidthCallback<DatasetContext>
LiningDataset. getPointBorderWidthCallback()
Returns the point border width callback, if set, otherwisenull
.WidthCallback<DatasetContext>
LiningDataset. getPointHoverBorderWidthCallback()
Returns the point hover border width callback, if set, otherwisenull
.Methods in org.pepstock.charba.client.data with parameters of type WidthCallback Modifier and Type Method Description void
HoverDataset. setBorderWidth(WidthCallback<DatasetContext> borderWidthCallback)
Sets the border width callback.void
LiningDataset. setBorderWidth(WidthCallback<DatasetContext> borderWidthCallback)
Sets the border width callback.void
HoverDataset. setHoverBorderWidth(WidthCallback<DatasetContext> hoverBorderWidthCallback)
Sets the hover border width callback.void
LiningDataset. setHoverBorderWidth(WidthCallback<DatasetContext> hoverBorderWidthCallback)
Sets the hover border width callback.void
LiningDataset. setPointBorderWidth(WidthCallback<DatasetContext> pointBorderWidthCallback)
Sets the point border width callback.void
LiningDataset. setPointHoverBorderWidth(WidthCallback<DatasetContext> pointHoverBorderWidthCallback)
Sets the point hover border width callback. -
Uses of WidthCallback in org.pepstock.charba.client.datalabels
Methods in org.pepstock.charba.client.datalabels that return WidthCallback Modifier and Type Method Description WidthCallback<DataLabelsContext>
LabelItem. getBorderWidthCallback()
Returns the border width callback, if set, otherwisenull
.WidthCallback<DataLabelsContext>
LabelItem. getTextStrokeWidthCallback()
Returns the text stroke width callback, if set, otherwisenull
.Methods in org.pepstock.charba.client.datalabels with parameters of type WidthCallback Modifier and Type Method Description AbstractBuilder<T>
AbstractBuilder. setBorderWidth(WidthCallback<DataLabelsContext> borderWidthCallback)
Sets the border width callback.void
LabelItem. setBorderWidth(WidthCallback<DataLabelsContext> borderWidthCallback)
Sets the border width callback.AbstractBuilder<T>
AbstractBuilder. setTextStrokeWidth(WidthCallback<DataLabelsContext> textStrokeWidthCallback)
Sets the text stroke width callback.void
LabelItem. setTextStrokeWidth(WidthCallback<DataLabelsContext> textStrokeWidthCallback)
Sets the text stroke width callback. -
Uses of WidthCallback in org.pepstock.charba.client.geo
Methods in org.pepstock.charba.client.geo that return WidthCallback Modifier and Type Method Description WidthCallback<ScaleContext>
Legend. getIndicatorWidthCallback()
Returns the callback to set how many pixels should be used for the color bar.WidthCallback<ScaleContext>
Legend. getWidthCallback()
Returns the callback to set how wide the scale is.Methods in org.pepstock.charba.client.geo with parameters of type WidthCallback Modifier and Type Method Description void
Legend. setIndicatorWidth(WidthCallback<ScaleContext> indicatorWidthCallback)
Sets how many pixels should be used for the color bar.void
Legend. setWidth(WidthCallback<ScaleContext> widthCallback)
Sets how wide the scale is.
-