Class CartesianScales
- java.lang.Object
-
- org.primefaces.model.charts.axes.AxesScale
-
- org.primefaces.model.charts.axes.cartesian.CartesianScales
-
- All Implemented Interfaces:
Serializable
public class CartesianScales extends AxesScale
Used to provide scales option has cartesian type- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CartesianScales()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddXAxesData(CartesianAxes newXAxesData)Adds a new xAxes asCartesianAxesdata to scalesvoidaddYAxesData(CartesianAxes newYAxesData)Adds a new yAxes asCartesianAxesdata to scalesList<CartesianAxes>getXAxes()Gets xAxesList<CartesianAxes>getYAxes()Gets yAxes-
Methods inherited from class org.primefaces.model.charts.axes.AxesScale
getWeight, isDisplay, setDisplay, setWeight
-
-
-
-
Method Detail
-
getXAxes
public List<CartesianAxes> getXAxes()
Gets xAxes- Returns:
- xAxes List<
CartesianAxes> list of x axes
-
getYAxes
public List<CartesianAxes> getYAxes()
Gets yAxes- Returns:
- yAxes List<
CartesianAxes> list of y axes
-
addXAxesData
public void addXAxesData(CartesianAxes newXAxesData)
Adds a new xAxes asCartesianAxesdata to scales- Parameters:
newXAxesData-
-
addYAxesData
public void addYAxesData(CartesianAxes newYAxesData)
Adds a new yAxes asCartesianAxesdata to scales- Parameters:
newYAxesData-
-
-