Interface IsDefaultPointStyleHandler
-
- All Known Subinterfaces:
IsDefaultBar
,IsDefaultLegendLabels
,IsDefaultPoint
- All Known Implementing Classes:
Bar
,BubbleMapPoint
,ChoroplethBar
,DefaultBar
,DefaultChartBar
,DefaultChartLegendLabels
,DefaultChartPoint
,DefaultLegendLabels
,DefaultPoint
,LegendLabels
,Point
public interface IsDefaultPointStyleHandler
Interface to define the point styles in the options elements.- Author:
- Andrea "Stock" Stocchero
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default PointStyle
getPointStyle()
Returns the style of the point.default Canvas
getPointStyleAsCanvas()
Returns the style of the point as canvas.
If property is missing or not an canvas, returnsnull
.default Img
getPointStyleAsImage()
Returns the style of the point as image.
If property is missing or not an image, returnsnull
.default PointStyleType
getPointStyleType()
Returns the type of point style.
-
-
-
Method Detail
-
getPointStyle
default PointStyle getPointStyle()
Returns the style of the point.- Returns:
- the style of the point.
-
getPointStyleType
default PointStyleType getPointStyleType()
Returns the type of point style.- Returns:
- the type of point style
-
getPointStyleAsImage
default Img getPointStyleAsImage()
Returns the style of the point as image.
If property is missing or not an image, returnsnull
.- Returns:
- image of the style of the point as image.
If property is missing or not a image, returnsnull
.
-
getPointStyleAsCanvas
default Canvas getPointStyleAsCanvas()
Returns the style of the point as canvas.
If property is missing or not an canvas, returnsnull
.- Returns:
- image of the style of the point as canvas.
If property is missing or not a canvas, returnsnull
.
-
-