Uses of Interface
org.pepstock.charba.client.callbacks.BorderRadiusCallback
-
Packages that use BorderRadiusCallback Package Description org.pepstock.charba.client.callbacks All callbacks interfaces to be implemented, also to use the scriptable options of 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.matrix Contains all classes to activate the Matrix controller (AKAchartjs-chart-matrix.js
) for CHART.js.org.pepstock.charba.client.treemap Contains all classes to activate the TreeMap controller (AKAchartjs-chart-treemap.js
) for CHART.js. -
-
Uses of BorderRadiusCallback in org.pepstock.charba.client.callbacks
Methods in org.pepstock.charba.client.callbacks with parameters of type BorderRadiusCallback Modifier and Type Method Description static <C extends ChartContext>
BarBorderRadiusBorderRadiusCallback. toObject(C context, BorderRadiusCallback<C> callback, int defaultValue)
Returns anBarBorderRadius
instance when the callback has been activated. -
Uses of BorderRadiusCallback in org.pepstock.charba.client.configuration
Methods in org.pepstock.charba.client.configuration that return BorderRadiusCallback Modifier and Type Method Description BorderRadiusCallback<DatasetContext>
Arc. getBorderRadiusCallback()
Returns the border radius callback, if set, otherwisenull
.BorderRadiusCallback<DatasetContext>
Bar. getBorderRadiusCallback()
Returns the border radius callback, if set, otherwisenull
.BorderRadiusCallback<ScaleContext>
RadialPointLabels. getBorderRadiusCallback()
Returns the callback called to set the border radius.BorderRadiusCallback<DatasetContext>
Bar. getHoverBorderRadiusCallback()
Returns the border radius callback, when hovered, if set, otherwisenull
.Methods in org.pepstock.charba.client.configuration with parameters of type BorderRadiusCallback Modifier and Type Method Description void
Arc. setBorderRadius(BorderRadiusCallback<DatasetContext> borderRadiusCallback)
Sets the border radius callback.void
Bar. setBorderRadius(BorderRadiusCallback<DatasetContext> borderRadiusCallback)
Sets the border radius callback.void
RadialPointLabels. setBorderRadius(BorderRadiusCallback<ScaleContext> borderRadiusCallback)
Sets the callback to set the border radius.void
Bar. setHoverBorderRadius(BorderRadiusCallback<DatasetContext> hoverBorderRadiusCallback)
Sets the border radius callback, when hovered. -
Uses of BorderRadiusCallback in org.pepstock.charba.client.data
Methods in org.pepstock.charba.client.data that return BorderRadiusCallback Modifier and Type Method Description BorderRadiusCallback<DatasetContext>
BarDataset. getBorderRadiusCallback()
Returns the border radius callback, if set, otherwisenull
.BorderRadiusCallback<DatasetContext>
PieDataset. getBorderRadiusCallback()
Returns the border radius callback, if set, otherwisenull
.BorderRadiusCallback<DatasetContext>
BarDataset. getHoverBorderRadiusCallback()
Returns the border radius callback, if set, otherwisenull
, when hovered.Methods in org.pepstock.charba.client.data with parameters of type BorderRadiusCallback Modifier and Type Method Description void
BarDataset. setBorderRadius(BorderRadiusCallback<DatasetContext> borderRadiusCallback)
Sets the border radius callback.void
PieDataset. setBorderRadius(BorderRadiusCallback<DatasetContext> borderRadiusCallback)
Sets the border radius callback.void
BarDataset. setHoverBorderRadius(BorderRadiusCallback<DatasetContext> hoverBorderRadiusCallback)
Sets the border radius callback, when hovered. -
Uses of BorderRadiusCallback in org.pepstock.charba.client.matrix
Methods in org.pepstock.charba.client.matrix that return BorderRadiusCallback Modifier and Type Method Description BorderRadiusCallback<DatasetContext>
MatrixDataset. getBorderRadiusCallback()
Returns the callback to set the border radius (in pixels).Methods in org.pepstock.charba.client.matrix with parameters of type BorderRadiusCallback Modifier and Type Method Description void
MatrixDataset. setBorderRadius(BorderRadiusCallback<DatasetContext> borderRadiusCallback)
Sets the callback to set the border radius (in pixels). -
Uses of BorderRadiusCallback in org.pepstock.charba.client.treemap
Methods in org.pepstock.charba.client.treemap that return BorderRadiusCallback Modifier and Type Method Description BorderRadiusCallback<DatasetContext>
TreeMapDataset. getBorderRadiusCallback()
Returns the border radius callback, if set, otherwisenull
.Methods in org.pepstock.charba.client.treemap with parameters of type BorderRadiusCallback Modifier and Type Method Description void
TreeMapDataset. setBorderRadius(BorderRadiusCallback<DatasetContext> borderRadiusCallback)
Sets the border radius callback.
-