// version: 2017-11-25 /** * o--------------------------------------------------------------------------------o * | This file is part of the RGraph package - you can learn more at: | * | | * | http://www.rgraph.net | * | | * | RGraph is licensed under the Open Source MIT license. That means that it's | * | totally free to use and there are no restrictions on what you can do with it! | * o--------------------------------------------------------------------------------o */ RGraph = window.RGraph || {isRGraph: true}; // Module pattern (function (win, doc, undefined) { var RG = RGraph, ua = navigator.userAgent, ma = Math; /** * This gunction shows a context menu containing the parameters * provided to it * * @param object canvas The canvas object * @param array menuitems The context menu menuitems * @param object e The event object */ RG.contextmenu = RG.Contextmenu = function (obj, menuitems, e) { var canvas = obj.canvas; e = RG.FixEventObject(e); /** * Fire the custom RGraph event onbeforecontextmenu */ RG.FireCustomEvent(obj, 'onbeforecontextmenu'); /** * Hide any existing menu */ if (RG.Registry.Get('chart.contextmenu')) { RG.HideContext(); } // Hide any zoomed canvas RG.HideZoomedCanvas(); /** * Hide the palette if necessary */ RG.HidePalette(); /** * This is here to ensure annotating is OFF */ obj.Set('chart.mousedown', false); var x = e.pageX; var y = e.pageY; var div = document.createElement('div'); var bg = document.createElement('div'); div.className = 'RGraph_contextmenu'; div.__canvas__ = canvas; /* Store a reference to the canvas on the contextmenu object */ div.style.position = 'absolute'; div.style.left = 0; div.style.top = 0; div.style.border = '1px solid #666'; div.style.backgroundColor = 'white'; div.style.boxShadow = '1px 1px 3px #ddd'; div.style.MozBoxShadow = '1px 1px 3px #ddd'; div.style.WebkitBoxShadow = '1px 1px 3px #ddd'; div.style.opacity = 0; bg.className = 'RGraph_contextmenu_background'; bg.style.position = 'absolute'; bg.style.backgroundColor = '#ccc'; bg.style.borderRight = '1px solid #aaa'; bg.style.top = 0; bg.style.left = 0; bg.style.width = '18px'; bg.style.height = '100%'; bg.style.opacity = 0; div = document.body.appendChild(div); bg = div.appendChild(bg); /** * Now add the context menu items */ for (i=0; i document.body.offsetWidth) { x -= div.offsetWidth; } // Reposition the menu (now we have the real offsetWidth) div.style.left = x + 'px'; div.style.top = y + 'px'; /** * Do a little fade in effect */ setTimeout("if (obj = RGraph.Registry.Get('chart.contextmenu')) obj.style.opacity = 0.2", 50); setTimeout("if (obj = RGraph.Registry.Get('chart.contextmenu')) obj.style.opacity = 0.4", 100); setTimeout("if (obj = RGraph.Registry.Get('chart.contextmenu')) obj.style.opacity = 0.6", 150); setTimeout("if (obj = RGraph.Registry.Get('chart.contextmenu')) obj.style.opacity = 0.8", 200); setTimeout("if (obj = RGraph.Registry.Get('chart.contextmenu')) obj.style.opacity = 1", 250); // The fade in effect on the left gray bar setTimeout("if (obj = RGraph.Registry.Get('chart.contextmenu.bg')) obj.style.opacity = 0.2", 50); setTimeout("if (obj = RGraph.Registry.Get('chart.contextmenu.bg')) obj.style.opacity = 0.4", 100); setTimeout("if (obj = RGraph.Registry.Get('chart.contextmenu.bg')) obj.style.opacity = 0.6", 150); setTimeout("if (obj = RGraph.Registry.Get('chart.contextmenu.bg')) obj.style.opacity = 0.8", 200); setTimeout("if (obj = RGraph.Registry.Get('chart.contextmenu.bg')) obj.style.opacity = 1", 250); // Store the context menu in the registry RG.Registry.Set('chart.contextmenu', div); RG.Registry.Set('chart.contextmenu.bg', bg); RG.Registry.Get('chart.contextmenu').oncontextmenu = function () {return false;}; RG.Registry.Get('chart.contextmenu.bg').oncontextmenu = function () {return false;}; /** * Install the event handlers that hide the context menu */ canvas.addEventListener('click', function () {RG.HideContext();}, false); window.addEventListener('click', function () { RG.HideContext(); }, false); window.addEventListener('resize', function () { RG.HideContext(); }, false); /** * Add the __shape__ object to the context menu */ /** * Set the shape coords from the .getShape() method */ if (typeof(obj.getShape) == 'function') { RG.Registry.Get('chart.contextmenu').__shape__ = obj.getShape(e); } e.stopPropagation(); /** * Fire the (RGraph) oncontextmenu event */ RG.FireCustomEvent(obj, 'oncontextmenu'); return false; }; /** * Hides the context menu if it's currently visible */ RG.hideContext = RG.HideContext = function () { var cm = RG.Registry.Get('chart.contextmenu'); var cmbg = RG.Registry.Get('chart.contextmenu.bg'); //Hide any submenu currently being displayed RG.HideContextSubmenu(); if (cm) { cm.parentNode.removeChild(cm); cmbg.parentNode.removeChild(cmbg); cm.style.visibility = 'hidden'; cm.style.display = 'none'; RG.Registry.Set('chart.contextmenu', null); cmbg.style.visibility = 'hidden'; cmbg.style.display = 'none'; RG.Registry.Set('chart.contextmenu.bg', null); } }; /** * Hides the context menus SUBMENU if it's currently visible */ RG.hideContextSubmenu = RG.HideContextSubmenu = function () { var sub = RG.Registry.Get('chart.contextmenu.submenu'); if (sub) { sub.style.visibility = 'none'; sub.style.display = 'none'; RG.Registry.Set('chart.contextmenu.submenu', null); } }; /** * Shows the context menu after making a few checks - not opera (doesn't support oncontextmenu, * not safari (tempermentality), not chrome (hmmm) */ RG.showContext = RG.ShowContext = function (obj) { RG.HidePalette(); if (obj.Get('chart.contextmenu') && obj.Get('chart.contextmenu').length) { var isOpera = navigator.userAgent.indexOf('Opera') >= 0; var isSafari = navigator.userAgent.indexOf('Safari') >= 0; var isChrome = navigator.userAgent.indexOf('Chrome') >= 0; var isMacFirefox = navigator.userAgent.indexOf('Firefox') > 0 && navigator.userAgent.indexOf('Mac') > 0; var isIE9 = navigator.userAgent.indexOf('MSIE 9') >= 0; if (((!isOpera && !isSafari) || isChrome) && !isMacFirefox) { obj.canvas.oncontextmenu = function (e) { e = RG.FixEventObject(e); if (e.ctrlKey) return true; RG.Contextmenu(obj, obj.Get('chart.contextmenu'), e); return false; } // Accomodate Opera and Safari - use double click event } else { obj.canvas.addEventListener('dblclick', function (e) { if (e.ctrlKey) return true; if (!RG.Registry.Get('chart.contextmenu')) { RG.Contextmenu(obj, obj.Get('chart.contextmenu'), e); } }, false); } } }; /** * This draws a submenu should it be necessary * * @param object obj The graph object * @param object menu The context menu */ RG.contextmenu_submenu = RG.Contextmenu_submenu = function (obj, menuitems, parentMenuItem) { RG.HideContextSubmenu(); var canvas = obj.canvas; var context = obj.context; var menu = parentMenuItem.parentNode; var subMenu = document.createElement('DIV'); subMenu.style.position = 'absolute'; subMenu.style.width = '100px'; subMenu.style.top = menu.offsetTop + parentMenuItem.offsetTop + 'px'; subMenu.style.left = (menu.offsetLeft + menu.offsetWidth - (RG.ISOLD ? 9 : 0)) + 'px'; subMenu.style.backgroundColor = 'white'; subMenu.style.border = '1px solid black'; subMenu.className = 'RGraph_contextmenu'; subMenu.__contextmenu__ = menu; subMenu.style.boxShadow = '3px 3px 3px rgba(96,96,96,0.5)'; subMenu.style.MozBoxShadow = '3px 3px 3px rgba(96,96,96,0.5)'; subMenu.style.WebkitBoxShadow = '3px 3px 3px rgba(96,96,96,0.5)'; subMenu.style.filter = 'progid:DXImageTransform.Microsoft.Shadow(color=#aaaaaa,direction=135)'; document.body.appendChild(subMenu); for (var i=0; iURL:'; div.innerHTML += '
A link using the URL: View
' /** * Create the image rendition of the graph */ var img = document.createElement('IMG'); RG.Registry.Set('chart.png', img); img.__canvas__ = canvas; img.__object__ = obj; img.id = '__rgraph_image_img__'; img.className = 'RGraph_png'; img.src = canvas.toDataURL(); div.appendChild(img); setTimeout(function () {document.getElementById("__rgraph_dataurl__").select();}, 50); window.addEventListener('resize', function (e){var img = RG.Registry.Get('chart.png');img.style.left = (document.body.clientWidth / 2) - (img.width / 2) + 'px';}, false); bg.onclick = function (e) { var div = document.getElementById("__rgraph_image_div__"); var bg = document.getElementById("__rgraph_image_bg__"); if (div) { div.style.opacity = 0; div.parentNode.removeChild(div); div.id = ''; div.style.display = 'none'; div = null; } if (bg) { bg.style.opacity = 0; bg.id = ''; bg.style.display = 'none'; bg = null; } } window.addEventListener('resize', function (e) {bg.onclick(e);}, false) /** * This sets the image BG and the DIV as global variables, circumventing repeated calls to document.getElementById() */ RG.showpng_image_bg = bg; RG.showpng_image_div = div; setTimeout('RGraph.showpng_image_div.style.opacity = 0.2', 50); setTimeout('RGraph.showpng_image_div.style.opacity = 0.4', 100); setTimeout('RGraph.showpng_image_div.style.opacity = 0.6', 150); setTimeout('RGraph.showpng_image_div.style.opacity = 0.8', 200); setTimeout('RGraph.showpng_image_div.style.opacity = 1', 250); setTimeout('RGraph.showpng_image_bg.style.opacity = 0.1', 50); setTimeout('RGraph.showpng_image_bg.style.opacity = 0.2', 100); setTimeout('RGraph.showpng_image_bg.style.opacity = 0.3', 150); setTimeout('RGraph.showpng_image_bg.style.opacity = 0.4', 200); setTimeout('RGraph.showpng_image_bg.style.opacity = 0.5', 250); img.onclick = function (e) { if (e.stopPropagation) e.stopPropagation(); else event.cancelBubble = true; } if (event && event.stopPropagation) { event.stopPropagation(); } }; // End module pattern })(window, document);