Interface IsDefaultPointStyleHandler
-
- All Known Subinterfaces:
HasPointStyle,IsDefaultBar,IsDefaultLegendLabels,IsDefaultPoint
- All Known Implementing Classes:
Bar,DefaultBar,DefaultChartBar,DefaultChartLegendLabels,DefaultChartPoint,DefaultLegendLabels,DefaultPoint,LegendLabels,Point,PointAnnotation
public interface IsDefaultPointStyleHandlerInterface 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 PointStylegetPointStyle()Returns the style of the point.default CanvasgetPointStyleAsCanvas()Returns the style of the point as canvas.
If property is missing or not an canvas, returnsnull.default ImggetPointStyleAsImage()Returns the style of the point as image.
If property is missing or not an image, returnsnull.default PointStyleTypegetPointStyleType()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.
-
-