Uses of Interface
org.pepstock.charba.client.items.IsBorderRadius
-
Packages that use IsBorderRadius 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.utils Contains some utilities to use in Charba, like HTML annotation builder, and other java script utilities useful for debugging. -
-
Uses of IsBorderRadius in org.pepstock.charba.client.data
Classes in org.pepstock.charba.client.data that implement IsBorderRadius Modifier and Type Class Description class
BarBorderRadius
Defines the border radius for BAR data set element, applies the corner radius to all corners of the rectangle (topLeft, topRight, bottomLeft, bottomRight). -
Uses of IsBorderRadius in org.pepstock.charba.client.items
Classes in org.pepstock.charba.client.items that implement IsBorderRadius Modifier and Type Class Description class
BorderRadiusItem
Defines the border radius for legend item element, applies the corner radius to all corners of the rectangle (topLeft, topRight, bottomLeft, bottomRight). -
Uses of IsBorderRadius in org.pepstock.charba.client.utils
Methods in org.pepstock.charba.client.utils with parameters of type IsBorderRadius Modifier and Type Method Description static String
Utilities. toCSSBorderRadiusProperty(IsBorderRadius borderRadius)
Builds the border radius string (shorthand property of CSS font) to use in the canvas object or in DOM element.
The format is [top-left | top-right | bottom-right | bottom-left].
-