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).
|
org.pepstock.charba.client.datalabels |
Contains all classes to activate the
DataLabelsPlugin.ID plugin (AKA chartjs-plugin-datalabels.js ) for CHART.js. |
Modifier and Type | Method and Description |
---|---|
WidthCallback<AnnotationContext> |
AbstractAnnotation.getBorderWidthCallback()
Returns the callback called to set the width of the border in pixels.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractAnnotation.setBorderWidth(WidthCallback<AnnotationContext> borderWidthCallback)
Sets the callback to set the color of the width of the border in pixels.
|
Modifier and Type | Method and Description |
---|---|
WidthCallback<SegmentContext> |
Segment.getBorderWidthCallback()
Returns the border width callback, if set, otherwise
null . |
WidthCallback<ScaleContext> |
Grid.getTickWidthCallback()
Returns the tick width callback instance.
|
Modifier and Type | Method and Description |
---|---|
void |
Segment.setBorderWidth(WidthCallback<SegmentContext> borderWidthCallback)
Sets the border width callback.
|
void |
Grid.setTickWidth(WidthCallback<ScaleContext> tickWidthCallback)
Sets the tick width callback instance.
|
Modifier and Type | Method and Description |
---|---|
WidthCallback<DatasetContext> |
HoverDataset.getBorderWidthCallback()
Returns the border width callback, if set, otherwise
null . |
WidthCallback<DatasetContext> |
LiningDataset.getBorderWidthCallback()
Returns the border width callback, if set, otherwise
null . |
WidthCallback<DatasetContext> |
HoverDataset.getHoverBorderWidthCallback()
Returns the hover border width callback, if set, otherwise
null . |
WidthCallback<DatasetContext> |
LiningDataset.getHoverBorderWidthCallback()
Returns the hover border width callback, if set, otherwise
null . |
WidthCallback<DatasetContext> |
LiningDataset.getPointBorderWidthCallback()
Returns the point border width callback, if set, otherwise
null . |
WidthCallback<DatasetContext> |
LiningDataset.getPointHoverBorderWidthCallback()
Returns the point hover border width callback, if set, otherwise
null . |
Modifier and Type | Method and 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.
|
Modifier and Type | Method and Description |
---|---|
WidthCallback<DataLabelsContext> |
LabelItem.getBorderWidthCallback()
Returns the border width callback, if set, otherwise
null . |
WidthCallback<DataLabelsContext> |
LabelItem.getTextStrokeWidthCallback()
Returns the text stroke width callback, if set, otherwise
null . |
Modifier and Type | Method and Description |
---|---|
void |
LabelItem.setBorderWidth(WidthCallback<DataLabelsContext> borderWidthCallback)
Sets the border width callback.
|
AbstractBuilder<T> |
AbstractBuilder.setBorderWidth(WidthCallback<DataLabelsContext> borderWidthCallback)
Sets the border width callback.
|
void |
LabelItem.setTextStrokeWidth(WidthCallback<DataLabelsContext> textStrokeWidthCallback)
Sets the text stroke width callback.
|
AbstractBuilder<T> |
AbstractBuilder.setTextStrokeWidth(WidthCallback<DataLabelsContext> textStrokeWidthCallback)
Sets the text stroke width callback.
|