// 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 installs some event handlers * * Checking the RGraph.Annotate flag means the annotate code only runs once */ RG.annotating_canvas_onmousedown = function (e) { if (e.button === 0) { e.target.__object__.Set('chart.mousedown', true); // Get the object from the canvas. Annotating must be enabled on the // last object defined var obj = e.target.__object__, prop = obj.properties // This starts the annotating "path" and set the color obj.context.beginPath(); obj.context.strokeStyle = obj.Get('chart.annotate.color'); obj.context.lineWidth = obj.Get('chart.annotate.linewidth'); var mouseXY = RG.getMouseXY(e), mouseX = mouseXY[0], mouseY = mouseXY[1] // Allow for the Bar chart 3D if (obj.type === 'bar' && prop['chart.variant'] === '3d') { var adjustment = prop['chart.variant.threed.angle'] * mouseXY[0]; mouseY -= adjustment; } // Clear the annotation recording RG.Registry.Set('annotate.actions', [obj.Get('chart.annotate.color')]); // This sets the initial X/Y position obj.context.moveTo(mouseX, mouseY); RG.Registry.Set('annotate.last.coordinates', [mouseX,mouseY]); RG.Registry.Set('started.annotating', false); RG.Registry.Set('chart.annotating', obj); // Fire the onannotatebegin event. RG.FireCustomEvent(obj, 'onannotatebegin'); } return false; }; /** * This cancels annotating for ALL canvases */ RG.annotating_window_onmouseup = function (e) { var obj = RG.Registry.Get('chart.annotating'); var win = window; if (e.button != 0 || !obj) { return; } // This cancels annotating on ALL canvas tags on the page var tags = doc.getElementsByTagName('canvas'); for (var i=0; i 0 && win.localStorage) { var id = '__rgraph_annotations_' + e.target.id + '__'; var annotations = win.localStorage[id] ? win.localStorage[id] + '|' : ''; annotations += RG.Registry.Get('annotate.actions'); // Store the annotations information in HTML5 browser storage here win.localStorage[id] = annotations; } // Clear the recorded annotations RG.Registry.Set('annotate.actions', []); // Fire the annotate event RG.FireCustomEvent(obj, 'onannotateend'); }; /** * The canvas onmousemove function */ RGraph.annotating_canvas_onmousemove = function (e) { var obj = e.target.__object__; var prop = obj.properties; var mouseXY = RG.getMouseXY(e); var mouseX = mouseXY[0]; var mouseY = mouseXY[1]; var lastXY = RG.Registry.Get('annotate.last.coordinates'); if (obj.Get('chart.mousedown')) { // Allow for the Bar chart 3D if (obj.type === 'bar' && prop['chart.variant'] === '3d') { var adjustment = prop['chart.variant.threed.angle'] * mouseXY[0]; mouseY -= adjustment; } obj.context.beginPath(); if (!lastXY) { obj.context.moveTo(mouseX, mouseY) } else { obj.context.strokeStyle = obj.properties['chart.annotate.color']; obj.context.moveTo(lastXY[0], lastXY[1]); obj.context.lineTo(mouseX, mouseY); } RG.Registry.Set('annotate.actions', RG.Registry.Get('annotate.actions') + '|' + mouseX + ',' + mouseY); RG.Registry.Set('annotate.last.coordinates', [mouseX,mouseY]); RG.FireCustomEvent(obj, 'onannotate'); obj.context.stroke(); } }; /** * Shows the mini palette used for annotations * * @param object e The event object */ RG.ShowPalette = RG.Showpalette = function (e) { var isSafari = navigator.userAgent.indexOf('Safari') ? true : false; e = RG.FixEventObject(e); var canvas = e.target.parentNode.__canvas__, context = canvas.getContext('2d'), obj = canvas.__object__, div = document.createElement('DIV'), coords = RG.getMouseXY(e) div.__object__ = obj; // The graph object div.className = 'RGraph_palette'; div.style.position = 'absolute'; div.style.backgroundColor = 'white'; div.style.border = '1px solid black'; div.style.left = 0; div.style.top = 0; div.style.padding = '3px'; div.style.paddingLeft = '5px'; div.style.opacity = 0; div.style.boxShadow = 'rgba(96,96,96,0.5) 3px 3px 3px'; div.style.WebkitBoxShadow = 'rgba(96,96,96,0.5) 3px 3px 3px'; div.style.MozBoxShadow = 'rgba(96,96,96,0.5) 3px 3px 3px'; // MUST use named colors that are capitalised var colors = [ 'Black', 'Red', 'Yellow', 'Green', 'Orange', 'White', 'Magenta', 'Pink' ]; // Add the colors to the palette for (var i=0,len=colors.length; i document.body.offsetWidth) { div.style.left = (e.pageX - div.offsetWidth) + 'px'; } /** * Store the palette div in the registry */ RGraph.Registry.Set('chart.palette', div); setTimeout(function () {div.style.opacity = 0.2;}, 50); setTimeout(function () {div.style.opacity = 0.4;}, 100); setTimeout(function () {div.style.opacity = 0.6;}, 150); setTimeout(function () {div.style.opacity = 0.8;}, 200); setTimeout(function () {div.style.opacity = 1;}, 250); RGraph.hideContext(); window.onclick = function () { RG.hidePalette(); } // Should this be here? Yes. This function is being used as an event handler. e.stopPropagation(); return false; }; /** * Clears any annotation data from global storage * * @param object canvas The canvas tag object */ RG.clearAnnotations = RG.ClearAnnotations = function (canvas) { /** * For BC the argument can also be the ID of the canvas */ if (typeof canvas === 'string') { var id = canvas; canvas = doc.getElementById(id); } else { var id = canvas.id } var obj = canvas.__object__; if (win.localStorage && win.localStorage['__rgraph_annotations_' + id + '__'] && win.localStorage['__rgraph_annotations_' + id + '__'].length) { win.localStorage['__rgraph_annotations_' + id + '__'] = []; RGraph.FireCustomEvent(obj, 'onannotateclear'); } }; /** * Replays stored annotations * * @param object obj The graph object */ RG.replayAnnotations = RG.ReplayAnnotations = function (obj) { // Check for support if (!win.localStorage) { return; } var context = obj.context; var annotations = win.localStorage['__rgraph_annotations_' + obj.id + '__']; var i, len, move, coords; context.beginPath(); context.lineWidth = obj.Get('annotate.linewidth'); if (annotations && annotations.length) { annotations = annotations.split('|'); } else { return; } for (i=0,len=annotations.length; i