Package org.pepstock.charba.client.data
Class BarBorderRadius
- java.lang.Object
-
- org.pepstock.charba.client.commons.NativeObjectContainer
-
- org.pepstock.charba.client.data.BarBorderRadius
-
public final class BarBorderRadius extends NativeObjectContainer
Defines the border radius for BAR data set element, applies the corner radius to all corners of the rectangle (topLeft, topRight, bottomLeft, bottomRight).- Author:
- Andrea "Stock" Stocchero
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
BarBorderRadius.BarBorderRadiusFactory
Inner class to create bar border radius object by a native object.
-
Field Summary
Fields Modifier and Type Field Description static BarBorderRadius.BarBorderRadiusFactory
FACTORY
Public factory to create a border radius object from a native object.
-
Constructor Summary
Constructors Constructor Description BarBorderRadius()
Creates the object with an empty native object instance.BarBorderRadius(int borderRadius)
Creates the object using the argument to set the border radius size to all corners of the rectangle.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
areValuesEquals()
Returnstrue
if all values of object are equals.int
average()
Returns the average value of all values managed by object.int
getBottomLeft()
Returns the border radius for bottom-left corner of the rectangle, in pixel.int
getBottomRight()
Returns the border radius for bottom-right corner of the rectangle, in pixel.int
getTopLeft()
Returns the border radius for top-left corner of the rectangle, in pixel.int
getTopRight()
Returns the border radius for top-right corner of the rectangle, in pixel.NativeObject
nativeObject()
Returns the native object instance.void
set(int borderRadius)
Sets the border radius size to all corners of the rectangle.void
setBottomLeft(int borderRadius)
Sets the border radius for bottom-left corner of the rectangle, in pixel.void
setBottomRight(int borderRadius)
Sets the border radius for bottom-right corner of the rectangle, in pixel.void
setTopLeft(int borderRadius)
Sets the border radius for top-left corner of the rectangle, in pixel.void
setTopRight(int borderRadius)
Sets the border radius for top-right corner of the rectangle, in pixel.-
Methods inherited from class org.pepstock.charba.client.commons.NativeObjectContainer
checkDefaultValuesArgument, empty, getArrayValue, getElement, getIncrementalId, getNativeChart, getNativeEvent, getNativeObject, getValue, getValue, getValue, getValue, getValue, getValue, getValue, getValue, getValue, getValue, getValue, getValue, getValue, getValueForMultipleKeyTypes, getValueForMultipleKeyTypes, getValueForMultipleKeyTypes, getValueOrArray, getValueOrArray, getValueOrArray, getValueOrArray, getValueOrArray, getValueOrArray, getValueOrArray, getValueOrArray, getValueOrArray, has, has, isType, keys, loadNativeObject, remove, remove, setArrayValue, setArrayValue, setArrayValue, setElement, setEmptyValue, setNewIncrementalId, setNewIncrementalId, setValue, setValue, setValue, setValue, setValue, setValue, setValue, setValue, setValue, setValue, setValue, setValue, setValue, setValue, setValue, setValue, setValue, setValue, setValueOrArray, setValueOrArray, setValueOrArray, setValueOrArray, setValueOrArray, setValueOrArray, setValueOrArray, setValueOrArray, setValueOrArray, setValueOrArray, toJSON, type
-
-
-
-
Field Detail
-
FACTORY
public static final BarBorderRadius.BarBorderRadiusFactory FACTORY
Public factory to create a border radius object from a native object.
-
-
Constructor Detail
-
BarBorderRadius
public BarBorderRadius()
Creates the object with an empty native object instance.
-
BarBorderRadius
public BarBorderRadius(int borderRadius)
Creates the object using the argument to set the border radius size to all corners of the rectangle.- Parameters:
borderRadius
- border radius to apply to all corners of the rectangle.
-
-
Method Detail
-
set
public void set(int borderRadius)
Sets the border radius size to all corners of the rectangle.- Parameters:
borderRadius
- border radius to apply to all corners of the rectangle.
-
setTopLeft
public void setTopLeft(int borderRadius)
Sets the border radius for top-left corner of the rectangle, in pixel.- Parameters:
borderRadius
- the border radius for top-left corner of the rectangle, in pixel
-
getTopLeft
public int getTopLeft()
Returns the border radius for top-left corner of the rectangle, in pixel.- Returns:
- the border radius for top-left corner of the rectangle, in pixel.
-
setTopRight
public void setTopRight(int borderRadius)
Sets the border radius for top-right corner of the rectangle, in pixel.- Parameters:
borderRadius
- the border radius for top-right corner of the rectangle, in pixel
-
getTopRight
public int getTopRight()
Returns the border radius for top-right corner of the rectangle, in pixel.- Returns:
- the border radius for top-right corner of the rectangle, in pixel.
-
setBottomLeft
public void setBottomLeft(int borderRadius)
Sets the border radius for bottom-left corner of the rectangle, in pixel.- Parameters:
borderRadius
- the border radius for bottom-left corner of the rectangle, in pixel
-
getBottomLeft
public int getBottomLeft()
Returns the border radius for bottom-left corner of the rectangle, in pixel.- Returns:
- the border radius for bottom-left corner of the rectangle, in pixel.
-
setBottomRight
public void setBottomRight(int borderRadius)
Sets the border radius for bottom-right corner of the rectangle, in pixel.- Parameters:
borderRadius
- the border radius for bottom-right corner of the rectangle, in pixel
-
getBottomRight
public int getBottomRight()
Returns the border radius for bottom-right corner of the rectangle, in pixel.- Returns:
- the border radius for bottom-right corner of the rectangle, in pixel.
-
areValuesEquals
public final boolean areValuesEquals()
Returnstrue
if all values of object are equals.- Returns:
true
if all values of object are equals
-
average
public final int average()
Returns the average value of all values managed by object.- Returns:
- the average value of all values managed by object
-
nativeObject
public final NativeObject nativeObject()
Returns the native object instance.- Returns:
- the native object instance.
-
-