Class PointColorDataSet
- java.lang.Object
-
- org.apache.syncope.client.console.chartjs.BaseDataSet
-
- org.apache.syncope.client.console.chartjs.PointColorDataSet
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
LineDataSet
public abstract class PointColorDataSet extends BaseDataSet
Provides some additional point color and point stroke color information.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PointColorDataSet(List<? extends Number> data)Instantiates a new abstract point color data set.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetPointColor()Gets the point color.StringgetPointStrokeColor()Gets the point stroke color.voidsetPointColor(String pointColor)Sets the point color.voidsetPointStrokeColor(String pointStrokeColor)Sets the point stroke color.-
Methods inherited from class org.apache.syncope.client.console.chartjs.BaseDataSet
getBackgroundColor, getBorderColor, getData, setBackgroundColor, setBorderColor
-
-
-
-
Method Detail
-
getPointColor
public String getPointColor()
Gets the point color.- Returns:
- the point color
-
setPointColor
public void setPointColor(String pointColor)
Sets the point color.- Parameters:
pointColor- the point color
-
getPointStrokeColor
public String getPointStrokeColor()
Gets the point stroke color.- Returns:
- the point stroke color
-
setPointStrokeColor
public void setPointStrokeColor(String pointStrokeColor)
Sets the point stroke color.- Parameters:
pointStrokeColor- the point stroke color
-
-