Home | History | Annotate | Download | only in static

Lines Matching refs:models

19  * @param {Array.<Object>} models
23 GraphView.prototype.generateLines_ = function(models) {
50 for (var i = 0; i < models.length; ++i)
51 categories[id].data.push([models[i].time - models[0].time, 0]);
79 models.forEach(function(model) {
86 models.forEach(function(model, index) {
103 * @param {Array.<Object>} models
106 GraphView.prototype.redraw_ = function(models) {
108 var data = this.generateLines_(models);