www/views/experiments/plotter/plotter.js

Code
Comments
Other
Rev Date Author Line
7604 25 Feb 19 nicklas 1 /* $Id $
7604 25 Feb 19 nicklas 2   ------------------------------------------------------------------
7604 25 Feb 19 nicklas 3   Copyright (C) 2013 Nicklas Nordborg
7604 25 Feb 19 nicklas 4
7604 25 Feb 19 nicklas 5   This file is part of BASE - BioArray Software Environment.
7604 25 Feb 19 nicklas 6   Available at http://base.thep.lu.se/
7604 25 Feb 19 nicklas 7
7604 25 Feb 19 nicklas 8   BASE is free software; you can redistribute it and/or
7604 25 Feb 19 nicklas 9   modify it under the terms of the GNU General Public License
7604 25 Feb 19 nicklas 10   as published by the Free Software Foundation; either version 3
7604 25 Feb 19 nicklas 11   of the License, or (at your option) any later version.
7604 25 Feb 19 nicklas 12
7604 25 Feb 19 nicklas 13   BASE is distributed in the hope that it will be useful,
7604 25 Feb 19 nicklas 14   but WITHOUT ANY WARRANTY; without even the implied warranty of
7604 25 Feb 19 nicklas 15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
7604 25 Feb 19 nicklas 16   GNU General Public License for more details.
7604 25 Feb 19 nicklas 17
7604 25 Feb 19 nicklas 18   You should have received a copy of the GNU General Public License
7604 25 Feb 19 nicklas 19   along with BASE. If not, see <http://www.gnu.org/licenses/>.
7604 25 Feb 19 nicklas 20   ------------------------------------------------------------------
7604 25 Feb 19 nicklas 21
7604 25 Feb 19 nicklas 22   @author Nicklas
7604 25 Feb 19 nicklas 23 */
7604 25 Feb 19 nicklas 24 'use strict';
7604 25 Feb 19 nicklas 25
7604 25 Feb 19 nicklas 26 var Plotter = function()
7604 25 Feb 19 nicklas 27 {
7604 25 Feb 19 nicklas 28   var plotter = {};
7604 25 Feb 19 nicklas 29   
7604 25 Feb 19 nicklas 30   /**
7604 25 Feb 19 nicklas 31     Initialize the page.
7604 25 Feb 19 nicklas 32   */
7604 25 Feb 19 nicklas 33   plotter.initPage = function()
7604 25 Feb 19 nicklas 34   {
7604 25 Feb 19 nicklas 35     Buttons.addClickHandler('close', App.closeWindow);
7604 25 Feb 19 nicklas 36
7604 25 Feb 19 nicklas 37     // Plot size
7604 25 Feb 19 nicklas 38     Events.addEventHandler('width', 'keypress', Events.integerOnly);
7604 25 Feb 19 nicklas 39     Events.addEventHandler('height', 'keypress', Events.integerOnly);
7604 25 Feb 19 nicklas 40
7604 25 Feb 19 nicklas 41     // Aggregate
7604 25 Feb 19 nicklas 42     Events.addEventHandler('yAggregateCount', 'click', plotter.aggregateOnChange);
7604 25 Feb 19 nicklas 43     Events.addEventHandler('yAggregateMean', 'click', plotter.aggregateOnChange);
7604 25 Feb 19 nicklas 44     
7604 25 Feb 19 nicklas 45     // Plot type
7604 25 Feb 19 nicklas 46     Events.addEventHandler('plotTypeScatter', 'change', plotter.plotTypeOnChange);
7604 25 Feb 19 nicklas 47     Events.addEventHandler('plotTypeHistogram', 'change', plotter.plotTypeOnChange);
7604 25 Feb 19 nicklas 48     plotter.plotTypeOnChange();
7604 25 Feb 19 nicklas 49
7604 25 Feb 19 nicklas 50     // Annotations
7604 25 Feb 19 nicklas 51     Events.addEventHandler('annotationPresets', 'change', plotter.annotationOnChange);
7604 25 Feb 19 nicklas 52     Events.addEventHandler('annotationExp', 'change', plotter.annotationExpressionOnChange);
7604 25 Feb 19 nicklas 53     
7604 25 Feb 19 nicklas 54     // Buttons
7604 25 Feb 19 nicklas 55     Buttons.addClickHandler('btnPreviewPlot', plotter.previewPlot);
7604 25 Feb 19 nicklas 56     Buttons.addClickHandler('btnViewPlot', plotter.viewPlot);
7604 25 Feb 19 nicklas 57     Buttons.addClickHandler('btnDownloadPlot', plotter.downloadPlot);
7604 25 Feb 19 nicklas 58     Buttons.addClickHandler('btnSavePlot', plotter.savePlotAs);
7604 25 Feb 19 nicklas 59
7604 25 Feb 19 nicklas 60   }
7604 25 Feb 19 nicklas 61
7604 25 Feb 19 nicklas 62   plotter.initElements = function(element, autoInit)
7604 25 Feb 19 nicklas 63   {
7604 25 Feb 19 nicklas 64     if (autoInit == 'formula-presets')
7604 25 Feb 19 nicklas 65     {
7604 25 Feb 19 nicklas 66       Events.addEventHandler(element, 'change', plotter.presetOnChange);
7604 25 Feb 19 nicklas 67     }
7604 25 Feb 19 nicklas 68     else if (autoInit == 'expression-builder')
7604 25 Feb 19 nicklas 69     {
7604 25 Feb 19 nicklas 70       Buttons.addClickHandler(element, plotter.openExpressionBuilder);
7604 25 Feb 19 nicklas 71     }
7604 25 Feb 19 nicklas 72   }
7604 25 Feb 19 nicklas 73   
7604 25 Feb 19 nicklas 74   plotter.getPlotType = function()
7604 25 Feb 19 nicklas 75   {
7604 25 Feb 19 nicklas 76     var frm = document.forms['plot'];
7604 25 Feb 19 nicklas 77     return Forms.getCheckedRadio(frm.plotType).value;
7604 25 Feb 19 nicklas 78   }
7604 25 Feb 19 nicklas 79
7604 25 Feb 19 nicklas 80   
7604 25 Feb 19 nicklas 81   plotter.validateParameters = function()
7604 25 Feb 19 nicklas 82   {
7604 25 Feb 19 nicklas 83     var plotType = plotter.getPlotType();
7604 25 Feb 19 nicklas 84     if (plotType == 'scatter')
7604 25 Feb 19 nicklas 85     {
7604 25 Feb 19 nicklas 86       return plotter.validateScatterPlot();
7604 25 Feb 19 nicklas 87     }
7604 25 Feb 19 nicklas 88     else if (plotType == 'histogram')
7604 25 Feb 19 nicklas 89     {
7604 25 Feb 19 nicklas 90       return plotter.validateHistogramPlot();
7604 25 Feb 19 nicklas 91     }
7604 25 Feb 19 nicklas 92     return false;
7604 25 Feb 19 nicklas 93   }
7604 25 Feb 19 nicklas 94   
7604 25 Feb 19 nicklas 95   plotter.validateScatterPlot = function()
7604 25 Feb 19 nicklas 96   {
7604 25 Feb 19 nicklas 97     var frm = document.forms['plot'];
7604 25 Feb 19 nicklas 98     if (Strings.trim(frm.yFormulaScatter.value) == '')
7604 25 Feb 19 nicklas 99     {
7604 25 Feb 19 nicklas 100       Forms.showNotification(frm.yFormulaScatter, 'You must enter an expression for the Y axis');
7604 25 Feb 19 nicklas 101       return false;
7604 25 Feb 19 nicklas 102     }
7604 25 Feb 19 nicklas 103     else if (Strings.trim(frm.xFormulaScatter.value) == '')
7604 25 Feb 19 nicklas 104     {
7604 25 Feb 19 nicklas 105       Forms.showNotification(frm.xFormulaScatter, 'You must enter an expression for the X axis');
7604 25 Feb 19 nicklas 106       return false;
7604 25 Feb 19 nicklas 107     }
7604 25 Feb 19 nicklas 108     return true;
7604 25 Feb 19 nicklas 109   }
7604 25 Feb 19 nicklas 110   
7604 25 Feb 19 nicklas 111   plotter.validateHistogramPlot = function()
7604 25 Feb 19 nicklas 112   {
7604 25 Feb 19 nicklas 113     var frm = document.forms['plot'];
7604 25 Feb 19 nicklas 114     var yAggregate = Forms.getCheckedRadio(frm.yAggregate).value;
7604 25 Feb 19 nicklas 115     if (Strings.trim(frm.xFormulaHistogram.value) == '')
7604 25 Feb 19 nicklas 116     {
7604 25 Feb 19 nicklas 117       Forms.showNotification(frm.xFormulaHistogram, 'You must enter an expression for the X axis');
7604 25 Feb 19 nicklas 118       return false;
7604 25 Feb 19 nicklas 119     }
7604 25 Feb 19 nicklas 120     else if (yAggregate != 'count' && Strings.trim(frm.yFormulaHistogram.value) == '')
7604 25 Feb 19 nicklas 121     {
7604 25 Feb 19 nicklas 122       Forms.showNotification(frm.yFormulaHistogram, 'You must enter an expression for the Y axis');
7604 25 Feb 19 nicklas 123       return false;
7604 25 Feb 19 nicklas 124     }
7604 25 Feb 19 nicklas 125     return true;
7604 25 Feb 19 nicklas 126   }
7604 25 Feb 19 nicklas 127
7604 25 Feb 19 nicklas 128   plotter.plotTypeOnChange = function()
7604 25 Feb 19 nicklas 129   {
7604 25 Feb 19 nicklas 130     var isScatter = plotter.getPlotType() == 'scatter';
7604 25 Feb 19 nicklas 131     Doc.showHide('scatterSection', isScatter);
7604 25 Feb 19 nicklas 132     Doc.showHide('histogramSection', !isScatter);
7604 25 Feb 19 nicklas 133   }
7604 25 Feb 19 nicklas 134
7604 25 Feb 19 nicklas 135   plotter.presetOnChange = function(event)
7604 25 Feb 19 nicklas 136   {
7604 25 Feb 19 nicklas 137     var list = event.currentTarget;
7604 25 Feb 19 nicklas 138     var selected = list[list.selectedIndex];
7604 25 Feb 19 nicklas 139     
7604 25 Feb 19 nicklas 140     var formulaField = Data.get(list, 'formula-id');
7604 25 Feb 19 nicklas 141     Doc.element(formulaField).value = selected.value;
7604 25 Feb 19 nicklas 142
7604 25 Feb 19 nicklas 143     var labelField = Data.get(list, 'label-id');
7604 25 Feb 19 nicklas 144     if (labelField && selected.value != '') Doc.element(labelField).value = selected.text;
7604 25 Feb 19 nicklas 145     list.selectedIndex = 0;
7604 25 Feb 19 nicklas 146   }
7604 25 Feb 19 nicklas 147
7604 25 Feb 19 nicklas 148   
7604 25 Feb 19 nicklas 149   plotter.openExpressionBuilder = function(event)
7604 25 Feb 19 nicklas 150   {
7604 25 Feb 19 nicklas 151     var formulaField = Doc.element(Data.get(event.currentTarget, 'formula-id'));
7604 25 Feb 19 nicklas 152     
7604 25 Feb 19 nicklas 153     if (!formulaField.disabled)
7604 25 Feb 19 nicklas 154     {
7604 25 Feb 19 nicklas 155       var title = Data.get(event.currentTarget, 'title');
7604 25 Feb 19 nicklas 156       var formulaType = Data.get(event.currentTarget, 'formula-type');
7604 25 Feb 19 nicklas 157       var rawDataType = Data.get(event.currentTarget, 'raw-data-type');
7604 25 Feb 19 nicklas 158       var channels = Data.int(event.currentTarget, 'channels');
7604 25 Feb 19 nicklas 159       var bioAssaySetId = Data.int(event.currentTarget, 'bioassayset');
7604 25 Feb 19 nicklas 160       
7604 25 Feb 19 nicklas 161       Dialogs.openExpressionBuilder(formulaField, title, formulaType, rawDataType, channels, bioAssaySetId);
7604 25 Feb 19 nicklas 162     }
7604 25 Feb 19 nicklas 163   }
7604 25 Feb 19 nicklas 164   
7604 25 Feb 19 nicklas 165   plotter.aggregateOnChange = function()
7604 25 Feb 19 nicklas 166   {
7604 25 Feb 19 nicklas 167     var frm = document.forms['plot'];
7604 25 Feb 19 nicklas 168     var selected = Forms.getCheckedRadio(frm.yAggregate);
7604 25 Feb 19 nicklas 169     var isCount = selected.value == 'count';
7604 25 Feb 19 nicklas 170     frm.yFormulaHistogram.disabled = isCount;
7604 25 Feb 19 nicklas 171     frm.yPresetsHistogram.disabled = isCount;
7604 25 Feb 19 nicklas 172     frm.yLogHistogram.disabled = isCount;
7604 25 Feb 19 nicklas 173     for (var i = 0; i < frm.hiloAggregate.length; i++)
7604 25 Feb 19 nicklas 174     {
7604 25 Feb 19 nicklas 175       frm.hiloAggregate[i].disabled = isCount;
7604 25 Feb 19 nicklas 176     }
7604 25 Feb 19 nicklas 177     if (isCount)
7604 25 Feb 19 nicklas 178     {
7604 25 Feb 19 nicklas 179       Doc.removeClass(frm.yFormulaHistogram, 'required');
7604 25 Feb 19 nicklas 180       frm.yLabelHistogram.value = 'Count';
7604 25 Feb 19 nicklas 181     }
7604 25 Feb 19 nicklas 182     else
7604 25 Feb 19 nicklas 183     {
7604 25 Feb 19 nicklas 184       Doc.addClass(frm.yFormulaHistogram, 'required');
7604 25 Feb 19 nicklas 185       var yPreset = frm.yPresetsHistogram[frm.yPresetsHistogram.selectedIndex];
7604 25 Feb 19 nicklas 186       if (yPreset.value != '') frm.yLabelHistogram.value = yPresetHistogram.text;
7604 25 Feb 19 nicklas 187     }
7604 25 Feb 19 nicklas 188   }
7604 25 Feb 19 nicklas 189
7604 25 Feb 19 nicklas 190   plotter.annotationOnChange = function(event)
7604 25 Feb 19 nicklas 191   {
7604 25 Feb 19 nicklas 192     var list = event.currentTarget;
7604 25 Feb 19 nicklas 193     var frm = document.forms['plot'];
7604 25 Feb 19 nicklas 194     var selected = list[list.selectedIndex];
7604 25 Feb 19 nicklas 195     var value = selected.value && selected.value != '$' ? selected.text : '';
7604 25 Feb 19 nicklas 196     value = value.replace('\[A\] ', '');
7604 25 Feb 19 nicklas 197     frm.subTitle.value = value;
7604 25 Feb 19 nicklas 198     
7604 25 Feb 19 nicklas 199     if (selected.value.substring(0, 1) == '$')
7604 25 Feb 19 nicklas 200     {
7604 25 Feb 19 nicklas 201       frm.annotationExp.disabled = true;
7604 25 Feb 19 nicklas 202     }
7604 25 Feb 19 nicklas 203     else
7604 25 Feb 19 nicklas 204     {
7604 25 Feb 19 nicklas 205       if (selected.value)
7604 25 Feb 19 nicklas 206       {
7604 25 Feb 19 nicklas 207         frm.annotationExp.value = selected.value;
7604 25 Feb 19 nicklas 208       }
7604 25 Feb 19 nicklas 209       frm.annotationExp.disabled = false;
7604 25 Feb 19 nicklas 210       frm.annotationExp.focus();
7604 25 Feb 19 nicklas 211     }
7604 25 Feb 19 nicklas 212   }
7604 25 Feb 19 nicklas 213   
7604 25 Feb 19 nicklas 214   plotter.annotationExpressionOnChange = function()
7604 25 Feb 19 nicklas 215   {
7604 25 Feb 19 nicklas 216     var frm = document.forms['plot'];
7604 25 Feb 19 nicklas 217     frm.annotationPresets.selectedIndex = frm.annotationPresets.length-1;
7604 25 Feb 19 nicklas 218   }
7604 25 Feb 19 nicklas 219   
7604 25 Feb 19 nicklas 220
7604 25 Feb 19 nicklas 221   
7604 25 Feb 19 nicklas 222   plotter.generatePlotUrl = function(fullSize)
7604 25 Feb 19 nicklas 223   {
7604 25 Feb 19 nicklas 224     if (plotter.validateParameters())
7604 25 Feb 19 nicklas 225     {
7604 25 Feb 19 nicklas 226       var frm = document.forms['plot'];
7604 25 Feb 19 nicklas 227       var url = 'plot?ID='+App.getSessionId();
7604 25 Feb 19 nicklas 228       url += '&bioassayset_id='+Data.get('page-data', 'bioassayset');
7604 25 Feb 19 nicklas 229       url += '&bioassay_id='+Data.get('page-data', 'bioassay');
7604 25 Feb 19 nicklas 230       url += '&title='+encodeURIComponent(frm.title.value);
7604 25 Feb 19 nicklas 231       url += '&subTitle='+encodeURIComponent(frm.subTitle.value);
7604 25 Feb 19 nicklas 232       if (fullSize)
7604 25 Feb 19 nicklas 233       {
7604 25 Feb 19 nicklas 234         url += '&width='+frm.width.value;
7604 25 Feb 19 nicklas 235         url += '&height='+frm.height.value;
7604 25 Feb 19 nicklas 236       }
7604 25 Feb 19 nicklas 237       
7604 25 Feb 19 nicklas 238       if (frm.filter.value != '')
7604 25 Feb 19 nicklas 239       {
7604 25 Feb 19 nicklas 240         url += '&filter='+encodeURIComponent(frm.filter.value);
7604 25 Feb 19 nicklas 241       }
7604 25 Feb 19 nicklas 242       
7604 25 Feb 19 nicklas 243       var annotation = '';
7604 25 Feb 19 nicklas 244       if (!frm.annotationExp.disabled)
7604 25 Feb 19 nicklas 245       {
7604 25 Feb 19 nicklas 246         if (frm.annotationExp.value)
7604 25 Feb 19 nicklas 247         {
7604 25 Feb 19 nicklas 248           annotation = '=' + frm.annotationExp.value;
7604 25 Feb 19 nicklas 249         }
7604 25 Feb 19 nicklas 250       }
7604 25 Feb 19 nicklas 251       else
7604 25 Feb 19 nicklas 252       {
7604 25 Feb 19 nicklas 253         annotation = frm.annotationPresets.value.substring(1);
7604 25 Feb 19 nicklas 254       }
7604 25 Feb 19 nicklas 255       if (annotation)
7604 25 Feb 19 nicklas 256       {
7604 25 Feb 19 nicklas 257         url += '&annotation='+encodeURIComponent(annotation);
7604 25 Feb 19 nicklas 258       }
7604 25 Feb 19 nicklas 259
7604 25 Feb 19 nicklas 260       var plotType = plotter.getPlotType();
7604 25 Feb 19 nicklas 261       if (plotType == 'scatter')
7604 25 Feb 19 nicklas 262       {
7604 25 Feb 19 nicklas 263         url += '&type=scatter';
7604 25 Feb 19 nicklas 264         url += '&x='+encodeURIComponent(frm.xFormulaScatter.value);
7604 25 Feb 19 nicklas 265         url += '&xLabel='+encodeURIComponent(frm.xLabelScatter.value);
7604 25 Feb 19 nicklas 266         url += '&xLog='+(frm.xLogScatter.checked ? 1 : 0);
7604 25 Feb 19 nicklas 267         url += '&y='+encodeURIComponent(frm.yFormulaScatter.value);
7604 25 Feb 19 nicklas 268         url += '&yLabel='+encodeURIComponent(frm.yLabelScatter.value);
7604 25 Feb 19 nicklas 269         url += '&yLog='+(frm.yLogScatter.checked ? 1 : 0);
7604 25 Feb 19 nicklas 270       }
7604 25 Feb 19 nicklas 271       else
7604 25 Feb 19 nicklas 272       {
7604 25 Feb 19 nicklas 273         var yAggregate = Forms.getCheckedRadio(frm.yAggregate).value;
7604 25 Feb 19 nicklas 274         url += '&type=histogram';
7604 25 Feb 19 nicklas 275         url += '&x='+encodeURIComponent(frm.xFormulaHistogram.value);
7604 25 Feb 19 nicklas 276         url += '&xLabel='+encodeURIComponent(frm.xLabelHistogram.value);
7604 25 Feb 19 nicklas 277         url += '&xLog='+(frm.xLogHistogram.checked ? 1 : 0);
7604 25 Feb 19 nicklas 278         url += '&binSize='+encodeURIComponent(frm.binSize.value);
7604 25 Feb 19 nicklas 279         url += '&yAggregate='+yAggregate;
7604 25 Feb 19 nicklas 280         url += '&yLabel='+encodeURIComponent(frm.yLabelHistogram.value);
7604 25 Feb 19 nicklas 281         if (yAggregate != 'count')
7604 25 Feb 19 nicklas 282         {
7604 25 Feb 19 nicklas 283           url += '&y='+encodeURIComponent(frm.yFormulaHistogram.value);
7604 25 Feb 19 nicklas 284           url += '&yLog='+(frm.yLogHistogram.checked ? 1 : 0);
7604 25 Feb 19 nicklas 285           url += '&hiloAggregate='+Forms.getCheckedRadio(frm.hiloAggregate).value
7604 25 Feb 19 nicklas 286         }
7604 25 Feb 19 nicklas 287       }
7604 25 Feb 19 nicklas 288       return url;
7604 25 Feb 19 nicklas 289     }
7604 25 Feb 19 nicklas 290   }
7604 25 Feb 19 nicklas 291
7604 25 Feb 19 nicklas 292   plotter.previewPlot = function()
7604 25 Feb 19 nicklas 293   {
7604 25 Feb 19 nicklas 294     var url = plotter.generatePlotUrl(false);
7604 25 Feb 19 nicklas 295     if (url)
7604 25 Feb 19 nicklas 296     {
7604 25 Feb 19 nicklas 297       url += '&width=540&height=360';
7604 25 Feb 19 nicklas 298
7604 25 Feb 19 nicklas 299       var overlayImg = Doc.element('overlay');
7604 25 Feb 19 nicklas 300       overlayImg.src = App.getRoot()+'images/plot_generating.gif';
7604 25 Feb 19 nicklas 301       
7604 25 Feb 19 nicklas 302       var tmpPlot = new Image();
7604 25 Feb 19 nicklas 303       Events.addEventHandler(tmpPlot, 'load', plotter.previewLoaded);
7604 25 Feb 19 nicklas 304       tmpPlot.src = url;
7604 25 Feb 19 nicklas 305     }
7604 25 Feb 19 nicklas 306   }
7604 25 Feb 19 nicklas 307
7604 25 Feb 19 nicklas 308   plotter.previewLoaded = function(event)
7604 25 Feb 19 nicklas 309   {
7604 25 Feb 19 nicklas 310     var tmpPlot = event.currentTarget;
7604 25 Feb 19 nicklas 311     
7604 25 Feb 19 nicklas 312     var previewImg = Doc.element('preview');
7604 25 Feb 19 nicklas 313     previewImg.src = tmpPlot.src;
7604 25 Feb 19 nicklas 314
7604 25 Feb 19 nicklas 315     var overlayImg = Doc.element('overlay');
7604 25 Feb 19 nicklas 316     overlayImg.src = App.getRoot() + 'images/blankbutton.gif';
7604 25 Feb 19 nicklas 317   }
7604 25 Feb 19 nicklas 318
7604 25 Feb 19 nicklas 319   plotter.viewPlot = function()
7604 25 Feb 19 nicklas 320   {
7604 25 Feb 19 nicklas 321     var plotUrl = plotter.generatePlotUrl(true);
7604 25 Feb 19 nicklas 322     if (plotUrl)
7604 25 Feb 19 nicklas 323     {
7604 25 Feb 19 nicklas 324       var frm = document.forms['plot'];
7604 25 Feb 19 nicklas 325       var width = parseInt(frm.width.value);
7604 25 Feb 19 nicklas 326       var height = parseInt(frm.height.value);
7604 25 Feb 19 nicklas 327       if (!width || width < 600) width = 600;
7604 25 Feb 19 nicklas 328       if (!height || height < 400) height = 400;
7604 25 Feb 19 nicklas 329       var url = 'view.jsp?ID='+App.getSessionId();
7604 25 Feb 19 nicklas 330       url += '&title='+encodeURIComponent(frm.title.value);
7604 25 Feb 19 nicklas 331       url += '&plot='+encodeURIComponent(plotUrl);
7604 25 Feb 19 nicklas 332       Dialogs.openPopup(url, 'ViewPlot', width+150, height+100);
7604 25 Feb 19 nicklas 333     }
7604 25 Feb 19 nicklas 334   }
7604 25 Feb 19 nicklas 335
7604 25 Feb 19 nicklas 336   
7604 25 Feb 19 nicklas 337   plotter.downloadPlot = function()
7604 25 Feb 19 nicklas 338   {
7604 25 Feb 19 nicklas 339     var plotUrl = plotter.generatePlotUrl(true);
7604 25 Feb 19 nicklas 340     if (plotUrl)
7604 25 Feb 19 nicklas 341     {
7604 25 Feb 19 nicklas 342       var url = 'download.jsp?ID='+App.getSessionId();
7604 25 Feb 19 nicklas 343       url += '&plot='+encodeURIComponent(plotUrl);
7604 25 Feb 19 nicklas 344       Dialogs.openPopup(url, 'DownloadPlot', 300, 200);
7604 25 Feb 19 nicklas 345     }
7604 25 Feb 19 nicklas 346   }
7604 25 Feb 19 nicklas 347
7604 25 Feb 19 nicklas 348   plotter.savePlotAs = function()
7604 25 Feb 19 nicklas 349   {
7604 25 Feb 19 nicklas 350     var plotUrl = plotter.generatePlotUrl(true);
7604 25 Feb 19 nicklas 351     if (plotUrl)
7604 25 Feb 19 nicklas 352     {
7604 25 Feb 19 nicklas 353       var url = 'save_as.jsp?ID='+App.getSessionId();
7604 25 Feb 19 nicklas 354       url += '&plot='+encodeURIComponent(plotUrl);
7604 25 Feb 19 nicklas 355       Dialogs.openPopup(url, 'SavePlotAs', 450, 300);
7604 25 Feb 19 nicklas 356     }
7604 25 Feb 19 nicklas 357   }
7604 25 Feb 19 nicklas 358
7604 25 Feb 19 nicklas 359
7604 25 Feb 19 nicklas 360   return plotter;
7604 25 Feb 19 nicklas 361 }();
7604 25 Feb 19 nicklas 362
7604 25 Feb 19 nicklas 363 Doc.onLoad(Plotter.initPage);
7604 25 Feb 19 nicklas 364 Doc.addElementInitializer(Plotter.initElements);
7604 25 Feb 19 nicklas 365