Package org.zkoss.zul
Class SimpleSingleValueCategoryModel
- java.lang.Object
-
- org.zkoss.zul.AbstractChartModel
-
- org.zkoss.zul.SimpleSingleValueCategoryModel
-
- All Implemented Interfaces:
java.io.Serializable,ChartModel,SingleValueCategoryModel
- Direct Known Subclasses:
SimplePieModel
public class SimpleSingleValueCategoryModel extends AbstractChartModel implements SingleValueCategoryModel
A Pie chart data model implementation ofSingleValueCategoryModel. SimpleSingleValueCategoryModel used by PieChart and FunnelChart is a series of (Category, singleValue) data objects.- Author:
- henrichen, rwenzel
- See Also:
SingleValueCategoryModel,Chart, Serialized Form
-
-
Field Summary
-
Fields inherited from class org.zkoss.zul.AbstractChartModel
_listeners
-
-
Constructor Summary
Constructors Constructor Description SimpleSingleValueCategoryModel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()clear the model.java.lang.Objectclone()java.util.Collection<java.lang.Comparable<?>>getCategories()Get categories as a collection.java.lang.Comparable<?>getCategory(int index)Get category of the specified index (0 based).java.lang.NumbergetValue(java.lang.Comparable<?> category)Get value of the specified category.voidremoveValue(java.lang.Comparable<?> category)remove the value of the specified category.voidsetValue(java.lang.Comparable<?> category, java.lang.Number value)add or update the value of a specified category.-
Methods inherited from class org.zkoss.zul.AbstractChartModel
addChartDataListener, fireEvent, removeChartDataListener
-
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.zkoss.zul.ChartModel
addChartDataListener, removeChartDataListener
-
-
-
-
Method Detail
-
getCategory
public java.lang.Comparable<?> getCategory(int index)
Description copied from interface:SingleValueCategoryModelGet category of the specified index (0 based).- Specified by:
getCategoryin interfaceSingleValueCategoryModel- Parameters:
index- the index of the category.
-
getCategories
public java.util.Collection<java.lang.Comparable<?>> getCategories()
Description copied from interface:SingleValueCategoryModelGet categories as a collection.- Specified by:
getCategoriesin interfaceSingleValueCategoryModel
-
getValue
public java.lang.Number getValue(java.lang.Comparable<?> category)
Description copied from interface:SingleValueCategoryModelGet value of the specified category.- Specified by:
getValuein interfaceSingleValueCategoryModel- Parameters:
category- the pie category.
-
setValue
public void setValue(java.lang.Comparable<?> category, java.lang.Number value)Description copied from interface:SingleValueCategoryModeladd or update the value of a specified category.- Specified by:
setValuein interfaceSingleValueCategoryModel- Parameters:
category- the pie category.value- the pie value.
-
removeValue
public void removeValue(java.lang.Comparable<?> category)
Description copied from interface:SingleValueCategoryModelremove the value of the specified category.- Specified by:
removeValuein interfaceSingleValueCategoryModel- Parameters:
category- the pie category.
-
clear
public void clear()
Description copied from interface:SingleValueCategoryModelclear the model.- Specified by:
clearin interfaceSingleValueCategoryModel
-
clone
public java.lang.Object clone()
- Overrides:
clonein classAbstractChartModel
-
-