Class RMGraphSeries
java.lang.Object
com.inductiveautomation.rm.graphing.RMGraphSeries
A class to represent a graph series, contains a list of series items.
- 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionstatic classA class to represent an individual item inside a graph series, including its key, group, value and bar/wedge shape.
- 
Constructor SummaryConstructorsConstructorDescriptionRMGraphSeries(String aTitle, String aKey, RMGroup aGroupList) Creates a new series.
- 
Method SummaryModifier and TypeMethodDescriptionvoidAdd item for given key/group.getItem(int anIndex) Returns the individual series item at the given index.intReturns the number of items in this series.getKey()Returns the key for this series.static List<RMGraphSeries>getSeries(RMGraphRPG aGraphRPG) Returns the graph series for a given graph.floatReturns the total for all values in series.getTitle()Returns the title for this series.
- 
Constructor Details- 
RMGraphSeriesCreates a new series.
 
- 
- 
Method Details- 
getTitleReturns the title for this series.
- 
getKeyReturns the key for this series.
- 
addItemAdd item for given key/group.
- 
getItemCountpublic int getItemCount()Returns the number of items in this series.
- 
getItemReturns the individual series item at the given index.
- 
getSeriesTotalpublic float getSeriesTotal()Returns the total for all values in series.
- 
getSeriesReturns the graph series for a given graph.
 
-