Uses of Class
org.pepstock.charba.client.enums.PointStyle
-
Packages that use PointStyle Package Description org.pepstock.charba.client.colors.tiles Contains all classes to build tiles to use in the a canvas patterns or a Charba pattern.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.defaults Contains all interfaces need to provide defaults values of the chart options.org.pepstock.charba.client.defaults.chart Contains the default values of chart options based on type of chart instance.org.pepstock.charba.client.defaults.globals Contains the default values of chart options for all chart types (CHART.JS options defaults).org.pepstock.charba.client.enums Contains all enumerations of some chart options where only a specific set of values can be set.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. -
-
Uses of PointStyle in org.pepstock.charba.client.colors.tiles
Methods in org.pepstock.charba.client.colors.tiles with parameters of type PointStyle Modifier and Type Method Description static Pattern
TilesFactory. createPattern(PointStyle style)
Returns a CHARBA pattern, using the point style as argument and the other default values, background color, shape color and size.static Pattern
TilesFactory. createPattern(PointStyle style, String backgroundColor)
Returns a CHARBA pattern, using the point style and back ground color as arguments and the other default values, shape color and size.static Pattern
TilesFactory. createPattern(PointStyle style, String backgroundColor, String shapeColor)
Returns a CHARBA pattern, using the point style, back ground color and shape color as arguments and the size as default value.static Pattern
TilesFactory. createPattern(PointStyle style, String backgroundColor, String shapeColor, int size)
Returns a CHARBA pattern, using the point style, back ground color, shape color and size as arguments.static Pattern
TilesFactory. createPattern(PointStyle style, IsColor backgroundColor)
Returns a CHARBA pattern, using the point style and back ground color as arguments and the other default values, shape color and size.static Pattern
TilesFactory. createPattern(PointStyle style, IsColor backgroundColor, IsColor shapeColor)
Returns a CHARBA pattern, using the point style, back ground color and shape color as arguments and the size as default value.static Pattern
TilesFactory. createPattern(PointStyle style, IsColor backgroundColor, IsColor shapeColor, int size)
Returns a CHARBA pattern, using the point style, back ground color, shape color and size as arguments.TilesBuilder
TilesBuilder. setPointStyle(PointStyle pointStyle)
Sets the point style as shape of the tile. -
Uses of PointStyle in org.pepstock.charba.client.configuration
Methods in org.pepstock.charba.client.configuration that return PointStyle Modifier and Type Method Description PointStyle
Bar. getPointStyle()
Returns the style of the point.PointStyle
LegendLabels. getPointStyle()
Returns the style of the legend.PointStyle
Point. getPointStyle()
Returns the style of the legend.Methods in org.pepstock.charba.client.configuration with parameters of type PointStyle Modifier and Type Method Description void
Bar. setPointStyle(PointStyle pointStyle)
Sets the style of the point.void
LegendLabels. setPointStyle(PointStyle pointStyle)
Sets the style of the legend, overriding point style from dataset.
Only applies ifLegendLabels.setUsePointStyle(boolean)
is set totrue
.void
Point. setPointStyle(PointStyle pointStyle)
Sets the style of the point. -
Uses of PointStyle in org.pepstock.charba.client.data
Methods in org.pepstock.charba.client.data that return PointStyle Modifier and Type Method Description PointStyle
BarDataset. getPointStyle()
Returns the style of the point for legend.Methods in org.pepstock.charba.client.data with parameters of type PointStyle Modifier and Type Method Description void
BarDataset. setPointStyle(PointStyle pointStyle)
Sets the style of the point for legend. -
Uses of PointStyle in org.pepstock.charba.client.defaults
Methods in org.pepstock.charba.client.defaults that return PointStyle Modifier and Type Method Description default PointStyle
IsDefaultPointStyleHandler. getPointStyle()
Returns the style of the point. -
Uses of PointStyle in org.pepstock.charba.client.defaults.chart
Methods in org.pepstock.charba.client.defaults.chart that return PointStyle Modifier and Type Method Description PointStyle
DefaultChartBar. getPointStyle()
PointStyle
DefaultChartLegendLabels. getPointStyle()
PointStyle
DefaultChartPoint. getPointStyle()
-
Uses of PointStyle in org.pepstock.charba.client.defaults.globals
Methods in org.pepstock.charba.client.defaults.globals that return PointStyle Modifier and Type Method Description PointStyle
DefaultBar. getPointStyle()
PointStyle
DefaultLegendLabels. getPointStyle()
-
Uses of PointStyle in org.pepstock.charba.client.enums
Methods in org.pepstock.charba.client.enums that return PointStyle Modifier and Type Method Description static PointStyle
PointStyle. valueOf(String name)
Returns the enum constant of this type with the specified name.static PointStyle[]
PointStyle. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of PointStyle in org.pepstock.charba.client.items
Methods in org.pepstock.charba.client.items that return PointStyle Modifier and Type Method Description PointStyle
DatasetElementOptions. getPointStyle()
Returns the style of the point.PointStyle
LegendItem. getPointStyle()
Returns the style of the legend box (only used if usePointStyle is true)PointStyle
TooltipLabelPointStyle. getPointStyle()
Returns the style of the point.Methods in org.pepstock.charba.client.items with parameters of type PointStyle Modifier and Type Method Description void
LegendLabelItem. setPointStyle(PointStyle style)
Sets the style of the legend box (only used if usePointStyle is true)void
TooltipLabelPointStyle. setPointStyle(PointStyle pointStyle)
Sets the style of the point.Constructors in org.pepstock.charba.client.items with parameters of type PointStyle Constructor Description TooltipLabelPointStyle(PointStyle poitnStyle)
Creates the object setting the point style argument
-