Home | History | Annotate | Download | only in ui

Lines Matching refs:graphItem

26     private static class GraphItem {
34 GraphItem(String title, String description,double value, Color color,boolean display) {
39 GraphItem(String title, String description, double value, Color color) {
94 GraphItem lastItem= (GraphItem) this.fItems.get(this.fItems.size()-1);
124 GraphItem thisItem= (GraphItem) this.fItems.get(i);
166 this.fItems.add(new GraphItem(name, description, value, col,display));
172 GraphItem graphItem= (GraphItem) this.fItems.get(i);
173 if (graphItem.value > maxItem)
174 maxItem= graphItem.value;
184 GraphItem graphItem= (GraphItem) this.fItems.get(i);
185 if (graphItem.value < minItem)
186 minItem= graphItem.value;