Class BaseDataSet
- java.lang.Object
-
- org.apache.syncope.client.console.chartjs.BaseDataSet
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
BarDataSet,PointColorDataSet
public abstract class BaseDataSet extends Object implements Serializable
Provides the simplest kind of a dataset. Besides the list of data itself, it contains default values for fill - and stroke color.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BaseDataSet(List<? extends Number> data)Instantiates a new abstract base data set.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetBackgroundColor()StringgetBorderColor()List<? extends Number>getData()BaseDataSetsetBackgroundColor(String backgroundColor)BaseDataSetsetBorderColor(String borderColor)
-
-
-
Method Detail
-
getBackgroundColor
public String getBackgroundColor()
-
setBackgroundColor
public BaseDataSet setBackgroundColor(String backgroundColor)
-
getBorderColor
public String getBorderColor()
-
setBorderColor
public BaseDataSet setBorderColor(String borderColor)
-
-