Created
February 7, 2014 01:18
-
-
Save tarelli/8855849 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/******************************************************************************* | |
* The MIT License (MIT) | |
* | |
* Copyright (c) 2011, 2013 OpenWorm. | |
* http://openworm.org | |
* | |
* All rights reserved. This program and the accompanying materials | |
* are made available under the terms of the MIT License | |
* which accompanies this distribution, and is available at | |
* http://opensource.org/licenses/MIT | |
* | |
* Contributors: | |
* OpenWorm - http://openworm.org/people.html | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights | |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
* copies of the Software, and to permit persons to whom the Software is | |
* furnished to do so, subject to the following conditions: | |
* | |
* The above copyright notice and this permission notice shall be included in | |
* all copies or substantial portions of the Software. | |
* | |
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | |
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, | |
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR | |
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE | |
* USE OR OTHER DEALINGS IN THE SOFTWARE. | |
*******************************************************************************/ | |
/** | |
* Plot Widget class | |
* | |
* @author Jesus R. Martinez (jesus@metacell.us) | |
*/ | |
var Plot = Widget.View.extend({ | |
plot : null, | |
datasets : [], | |
limit : 20, | |
updateGrid : false, | |
options : null, | |
/** | |
* Default options for plot widget, used if none specified | |
* when plot is created | |
*/ | |
defaultPlotOptions: { | |
series: { | |
shadowSize : 0, | |
}, | |
yaxis: { min : -.1,max : 1}, | |
xaxis: {min: 0, max : 20, show : true}, | |
}, | |
/** | |
* Initializes the plot widget | |
*/ | |
initialize : function(){ | |
this.datasets = []; | |
this.options = this.defaultPlotOptions; | |
this.render(); | |
this.dialog.append("<div class='plot' id='" + this.id + "'></div>"); | |
}, | |
/** | |
* Takes two time series and plots one against the other. | |
* To plot array(s) , use it as plotData([[1,2],[2,3]]) | |
* To plot an object , use it as plotData(objectNameX,objectNameY) | |
* | |
* @name plotData(dataX,dataY, options) | |
* @param newDataX - series to plot on X axis, can be array or an object | |
* @param newDataY - series to plot on Y axis, can be array or an object | |
* @param options - options for the plotting widget, if null uses default | |
*/ | |
plotData : function(newDataX, newDataY, options){ | |
this.setOptions(options); | |
if(newDataX.name != null && newDataY.name != null){ | |
for(var set in this.datasets){ | |
if(newDataX.name+'/'+newDataY.name == this.datasets[set].label ){ | |
return this.name + " widget is already plotting " + newDataX.name+'/'+newDataY.name; | |
} | |
} | |
this.datasets.push({label : newDataX.name+'/'+newDataY.name, data : [[newDataX.value,newDataY.value]]}); | |
$("#"+this.getId()).trigger("subscribe", [newDataX.name,newDataY.name]); | |
} | |
else{ | |
return "One or both variables are malformed"; | |
} | |
var plotHolder = $("#"+this.id); | |
if(this.plot == null){ | |
this.plot = $.plot(plotHolder,this.datasets,this.options); | |
plotHolder.resize(); | |
} | |
else{ | |
this.plot = $.plot(plotHolder,this.datasets,this.options); | |
} | |
return "Line plot added to widget"; | |
}, | |
/** | |
* Takes data series and plots them. | |
* To plot array(s) , use it as plotData([[1,2],[2,3]]) | |
* To plot an object , use it as plotData(objectName) | |
* Multiples arrays can be specified at once in this method, but only one object | |
* at a time. | |
* | |
* @name plotData(data, options) | |
* @param newData - series to plot, can be array or an object | |
* @param options - options for the plotting widget, if null uses default | |
*/ | |
plotData : function(newData, options){ | |
this.setOptions(options); | |
if(newData.name != null){ | |
for(var set in this.datasets){ | |
if(newData.name == this.datasets[set].label ){ | |
return this.name + " widget is already plotting object " + newData.name; | |
} | |
} | |
this.datasets.push({label : newData.name, data : [[0,newData.value]]}); | |
$("#"+this.getId()).trigger("subscribe", [newData.name]); | |
} | |
else{ | |
this.datasets.push({label : "", data : newData}); | |
} | |
var plotHolder = $("#"+this.id); | |
if(this.plot == null){ | |
this.plot = $.plot(plotHolder,this.datasets,this.options); | |
plotHolder.resize(); | |
} | |
else{ | |
this.plot = $.plot(plotHolder,this.datasets,this.options); | |
} | |
return "Line plot added to widget"; | |
}, | |
/** | |
* Removes the data set from the plot. | |
* EX: removeDataSet(dummyDouble) | |
* | |
* @param set - Data set to be removed from the plot | |
*/ | |
removeDataSet : function(set){ | |
if(set !=null){ | |
for(var key in this.datasets){ | |
if(set.name == this.datasets[key].label){ | |
$("#"+this.getId()).trigger("unsubscribe", [set.name]); | |
this.datasets.splice(key, 1); | |
} | |
} | |
var data = []; | |
for(var i =0; i<this.datasets.length ; i++){ | |
data.push(this.datasets[i]); | |
} | |
this.plot.setData(data); | |
this.plot.setupGrid(); | |
this.plot.draw(); | |
} | |
if(this.datasets.length == 0){ | |
this.resetPlot(); | |
} | |
}, | |
/** | |
* Updates a data set, use for time series | |
* | |
* @param label - Name of new data set | |
* @param newValue - Updated value for data set | |
*/ | |
updateDataSet : function(label,newValue){ | |
if(label != null){ | |
var newData = null; | |
var matchedKey = 0; | |
var reIndex = false; | |
//update corresponding data set | |
for(var key in this.datasets){ | |
if(label == this.datasets[key].label){ | |
newData = this.datasets[key].data; | |
matchedKey = key; | |
} | |
} | |
if(newData.length > this.limit){ | |
newData.splice(0,1); | |
reIndex = true; | |
} | |
newData.push([newData.length, newValue[0]]); | |
if(reIndex){ | |
//re-index data | |
var indexedData = []; | |
for(var index =0, len = newData.length; index < len; index++){ | |
var value = newData[index][1]; | |
indexedData.push([index, value]); | |
} | |
this.datasets[matchedKey].data = indexedData; | |
} | |
else{ | |
this.datasets[matchedKey].data = newData; | |
} | |
this.plot.setData(this.datasets); | |
this.plot.draw(); | |
} | |
}, | |
/** | |
* Plots a function against a data series | |
* | |
* @name dataFunction(func, data, options) | |
* @param func - function to plot vs data | |
* @param data - data series to plot against function | |
* @param options - options for plotting widget | |
*/ | |
plotDataFunction : function(func,data,options){ | |
}, | |
/** | |
* Resets the plot widget, deletes all the data series but does not | |
* destroy the widget window. | |
* | |
* @name resetPlot() | |
*/ | |
resetPlot : function(){ | |
if(this.plot != null){ | |
this.datasets = []; | |
this.options = this.defaultPlotOptions; | |
var plotHolder = $("#"+this.id); | |
this.plot = $.plot(plotHolder,this.datasets,this.options); | |
} | |
}, | |
/** | |
* | |
* Set the options for the plotting widget | |
* | |
* @name setOptions(options) | |
* @param options | |
*/ | |
setOptions : function(options){ | |
if(options != null) | |
{ | |
this.options = options; | |
if(options.xaxis != null){ | |
if(options.xaxis.max > this.limit){ | |
this.limit = options.xaxis.max; | |
} | |
} | |
this.plot = $.plot($("#"+this.id), this.datasets,this.options); | |
} | |
}, | |
getDataSets : function(){ | |
return this.datasets; | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment