it only shows up with mouse-over. turning imagemap off does not fix the issue. I've tried several other things to no avail such as device=SVGnotip but the tooltip is very persistent. I found that right-clicking the graph and inspecting it reveals the information below. Based on this code, any other ideas how to disable the tooltips with html5 using svg? function SVG_IDX_HideTooltip( evt ) { SVG_IDX_tiptspan.firstChild.nodeValue = null; SVG_IDX_singleTip.setAttributeNS(null, 'visibility', 'hidden'); } function SVG_IDX_ShowTooltip( evt ) { SVG_IDX_GetTrueCoords( evt ); var targetElement = evt.target; var tspanCount = targetElement.getElementsByTagName('desc').length; if (tspanCount == 1) { var targetTspan = targetElement.getElementsByTagName('desc').item(0); if ( targetTspan) { if (targetTspan.firstChild != null) SVG_IDX_tiptspan.firstChild.nodeValue = targetTspan.firstChild.nodeValue; } } if ( '' != SVG_IDX_tiptspan.firstChild.nodeValue ) { var outline = SVG_IDX_singleText.getBBox(); SVG_IDX_singleBox.setAttributeNS(null, 'transform', 'scale(' + SVG_IDX_attrScale + ',' + SVG_IDX_attrScale + ')' ); SVG_IDX_singleText.setAttributeNS(null, 'transform', 'scale(' + SVG_IDX_attrScale + ',' + SVG_IDX_attrScale + ')' ); SVG_IDX_singleTip.setAttributeNS(null, 'visibility', 'visible'); if (evt.clientX + ((outline.width + 8)/0.8) * SVG_IDX_attrScale > SVG_IDX_rightEdge) { var xPos = SVG_IDX_TrueCoords.x - parseInt((outline.width + 8)*SVG_IDX_attrScale); if (xPos < 0) xPos = 0; } else var xPos = SVG_IDX_TrueCoords.x; if (SVG_IDX_TrueCoords.y < 16) { var yPos = SVG_IDX_TrueCoords.y + ((outline.height + 16)/0.8)*SVG_IDX_attrScale; if (yPos > windowHeight) yPos = SVG_IDX_TrueCoords.y - parseInt((outline.height + 8)*SVG_IDX_attrScale); } else var yPos = SVG_IDX_TrueCoords.y - parseInt((outline.height + 8)*SVG_IDX_attrScale); if (Number(outline.width == 0)) SVG_IDX_singleBox.setAttributeNS(null, 'width', outline.width); else SVG_IDX_singleBox.setAttributeNS(null, 'width', outline.width + 8); SVG_IDX_singleBox.setAttributeNS(null, 'height', outline.height + 8); SVG_IDX_singleTip.setAttributeNS(null, 'transform', 'translate(' + xPos + ',' + yPos + ')'); } } </script> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" baseProfile="full" version="1.1" id="SVG_IDX" onload='SVG_IDX_Init("SVG_IDX")' viewBox="-1 -1 641 481" height="480" width="640"> <title>Most Recent Ostomy Surgery Date;</title> <desc id="desc_SVG_IDX">The SGPlot Procedure</desc>
... View more