@Override public void incrementalRedraw() { if (layer == null) { makeLayerElement(); addCSSClasses(); } // TODO make the number of digits configurable final String label = (epsilon > 0.0) ? FormatUtil.NF4.format(epsilon) : ""; // compute absolute y-value of bar final double yAct = getYFromEpsilon(epsilon); if (elemText == null) { elemText = svgp.svgText(StyleLibrary.SCALE * 1.05, yAct, label); SVGUtil.setAtt(elemText, SVGConstants.SVG_CLASS_ATTRIBUTE, CSS_EPSILON); layer.appendChild(elemText); } else { elemText.setTextContent(label); SVGUtil.setAtt(elemText, SVGConstants.SVG_Y_ATTRIBUTE, yAct); } // line and handle if (elementLine == null) { elementLine = svgp.svgLine(0, yAct, StyleLibrary.SCALE * 1.04, yAct); SVGUtil.addCSSClass(elementLine, CSS_LINE); layer.appendChild(elementLine); } else { SVGUtil.setAtt(elementLine, SVG12Constants.SVG_Y1_ATTRIBUTE, yAct); SVGUtil.setAtt(elementLine, SVG12Constants.SVG_Y2_ATTRIBUTE, yAct); } if (elementPoint == null) { elementPoint = svgp.svgCircle(StyleLibrary.SCALE * 1.04, yAct, StyleLibrary.SCALE * 0.004); SVGUtil.addCSSClass(elementPoint, CSS_LINE); layer.appendChild(elementPoint); } else { SVGUtil.setAtt(elementPoint, SVG12Constants.SVG_CY_ATTRIBUTE, yAct); } if (eventarea == null) { eventarea = new DragableArea( svgp, StyleLibrary.SCALE, -StyleLibrary.SCALE * 0.01, // StyleLibrary.SCALE * 0.1, plotheight + StyleLibrary.SCALE * 0.02, this); layer.appendChild(eventarea.getElement()); } }
/** * Toggle the Tooltip of an element. * * @param elem Element * @param type Event type */ protected void toggleTooltip(Element elem, String type) { String csscls = elem.getAttribute(SVGConstants.SVG_CLASS_ATTRIBUTE); if (SVGConstants.SVG_MOUSEOVER_EVENT_TYPE.equals(type)) { if (TOOLTIP_HIDDEN.equals(csscls)) { SVGUtil.setAtt(elem, SVGConstants.SVG_CLASS_ATTRIBUTE, TOOLTIP_VISIBLE); } } else if (SVGConstants.SVG_MOUSEOUT_EVENT_TYPE.equals(type)) { if (TOOLTIP_VISIBLE.equals(csscls)) { SVGUtil.setAtt(elem, SVGConstants.SVG_CLASS_ATTRIBUTE, TOOLTIP_HIDDEN); } } else if (SVGConstants.SVG_CLICK_EVENT_TYPE.equals(type)) { if (TOOLTIP_STICKY.equals(csscls)) { SVGUtil.setAtt(elem, SVGConstants.SVG_CLASS_ATTRIBUTE, TOOLTIP_HIDDEN); } if (TOOLTIP_HIDDEN.equals(csscls) || TOOLTIP_VISIBLE.equals(csscls)) { SVGUtil.setAtt(elem, SVGConstants.SVG_CLASS_ATTRIBUTE, TOOLTIP_STICKY); } } }