Package | Description |
---|---|
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.items |
Contains all elements generated by CHART.JS, which are mapping java script objects, to use at runtime in plugins, events or controllers.
|
org.pepstock.charba.client.matrix |
Contains all classes to activate the Matrix controller (AKA
chartjs-chart-matrix.js ) for CHART.js. |
Modifier and Type | Method and Description |
---|---|
BarBorderWidth |
BarBorderWidth.BarBorderWidthFactory.create(NativeObject nativeObject) |
Modifier and Type | Method and Description |
---|---|
List<BarBorderWidth> |
BarDataset.getBorderWidthAsObjects()
Returns the stroke width of the bar in pixels.
If a callback or an array have been set, returns an empty object. |
List<BarBorderWidth> |
BarDataset.getHoverBorderWidthAsObjects()
Returns the stroke width of the bar in pixels, when hovered.
|
Modifier and Type | Method and Description |
---|---|
void |
BarDataset.setBorderWidth(BarBorderWidth... borderWidth)
Sets the stroke width of the bar in pixels.
|
void |
BarDataset.setHoverBorderWidth(BarBorderWidth... borderWidth)
Sets the stroke width of the bar in pixels, when hovered.
|
Modifier and Type | Method and Description |
---|---|
void |
BarDataset.setBorderWidth(List<BarBorderWidth> borderWidth)
Sets the stroke width of the bar in pixels.
|
void |
BarDataset.setHoverBorderWidth(List<BarBorderWidth> borderWidth)
Sets the stroke width of the bar in pixels, when hovered.
|
Modifier and Type | Method and Description |
---|---|
BarBorderWidth |
DatasetElementOptions.getBorderWidthAsObject()
Returns the border width of the dataset item in pixels as
BarBorderWidth . |
Modifier and Type | Method and Description |
---|---|
BarBorderWidth |
MatrixDataset.getBorderWidthAsObject()
Returns the border width (in pixels).
|
BarBorderWidth |
MatrixDataset.getHoverBorderWidthAsObject()
Returns the border width (in pixels), when hovered.
|
Modifier and Type | Method and Description |
---|---|
void |
MatrixDataset.setBorderWidth(BarBorderWidth borderWidth)
Sets the border width (in pixels).
|
void |
MatrixDataset.setHoverBorderWidth(BarBorderWidth hoverBorderWidth)
Sets the border width (in pixels), when hovered.
|