Public 成员函数 | |
| MultipleCategorySeries (String title) | |
| void | add (String[] titles, double[] values) |
| void | add (String category, String[] titles, double[] values) |
| void | remove (int index) |
| void | clear () |
| double[] | getValues (int index) |
| String | getCategory (int index) |
| int | getCategoriesCount () |
| int | getItemCount (int index) |
| String[] | getTitles (int index) |
| XYSeries | toXYSeries () |
Private 属性 | |
| String | mTitle |
| List< String > | mCategories = new ArrayList<String>() |
| List< String[]> | mTitles = new ArrayList<String[]>() |
| List< double[]> | mValues = new ArrayList<double[]>() |
A series for the multiple category charts like the doughnut.
|
inline |
Builds a new category series.
| title | the series title |
|
inline |
Adds a new value to the series.
| titles | the titles to be used as labels |
| values | the new value |
|
inline |
Adds a new value to the series.
| category | the category name |
| titles | the titles to be used as labels |
| values | the new value |
|
inline |
Removes all the existing values from the series.
|
inline |
Returns the categories count.
|
inline |
Returns the category name at the specified index.
| index | the index |
|
inline |
Returns the series item count.
| index | the index |
|
inline |
Returns the series titles.
| index | the index |
|
inline |
Returns the values at the specified index.
| index | the index |
|
inline |
Removes an existing value from the series.
| index | the index in the series of the value to remove |
|
inline |
Transforms the category series to an XY series.
|
private |
The series local keys.
|
private |
The series title.
|
private |
The series name.
|
private |
The series values.
1.8.8