Class MultipleCategorySeries
java.lang.Object
com.codename1.charts.models.MultipleCategorySeries
A series for the multiple category charts like the doughnut.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidAdds a new value to the seriesvoidAdds a new value to the series.voidclear()Removes all the existing values from the series.intReturns the categories count.getCategory(int index) Returns the category name at the specified index.intgetItemCount(int index) Returns the series item count.String[]getTitles(int index) Returns the series titles.double[]getValues(int index) Returns the values at the specified index.voidremove(int index) Removes an existing value from the series.Transforms the category series to an XY series.Methods inherited from class Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()booleanIndicates whether some other object is "equal to" this one.final ClassgetClass()Returns the runtime class of an object.inthashCode()Returns a hash code value for the object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes current thread to wait until another thread invokes the method or the method for this object.final voidwait(long timeout) Causes current thread to wait until either another thread invokes the method or the method for this object, or a specified amount of time has elapsed.final voidwait(long timeout, int nanos) Causes current thread to wait until another thread invokes the method or the method for this object, or some other thread interrupts the current thread, or a certain amount of real time has elapsed.
-
Constructor Details
-
MultipleCategorySeries
Builds a new category series.
Parameters
title: the series title
-
-
Method Details
-
add
Adds a new value to the series
Parameters
-
titles: the titles to be used as labels -
values: the new value
-
-
add
-
remove
public void remove(int index) Removes an existing value from the series.
Parameters
index: the index in the series of the value to remove
-
clear
public void clear()Removes all the existing values from the series. -
getValues
public double[] getValues(int index) Returns the values at the specified index.
Parameters
index: the index
Returns
the value at the index
-
getCategory
Returns the category name at the specified index.
Parameters
index: the index
Returns
the category name at the index
-
getCategoriesCount
public int getCategoriesCount()Returns the categories count.
Returns
the categories count
-
getItemCount
public int getItemCount(int index) Returns the series item count.
Parameters
index: the index
Returns
the series item count
-
getTitles
Returns the series titles.
Parameters
index: the index
Returns
the series titles
-
toXYSeries
Transforms the category series to an XY series.
Returns
the XY series
-