REFACTORING: Fixed code style nits and extracted the null values check to a method.
[dygraphs.git] / dygraph-layout.js
CommitLineData
88e95c46
DV
1/**
2 * @license
3 * Copyright 2011 Dan Vanderkam (danvdk@gmail.com)
4 * MIT-licensed (http://opensource.org/licenses/MIT)
5 */
74a5af31
DV
6
7/**
8 * @fileoverview Based on PlotKitLayout, but modified to meet the needs of
9 * dygraphs.
10 */
11
758a629f
DV
12/*jshint globalstrict: true */
13/*global Dygraph:false */
c0f54d4f
DV
14"use strict";
15
74a5af31
DV
16/**
17 * Creates a new DygraphLayout object.
18 *
19 * This class contains all the data to be charted.
20 * It uses data coordinates, but also records the chart range (in data
21 * coordinates) and hence is able to calculate percentage positions ('In this
22 * view, Point A lies 25% down the x-axis.')
23 *
24 * Two things that it does not do are:
25 * 1. Record pixel coordinates for anything.
26 * 2. (oddly) determine anything about the layout of chart elements.
27 *
28 * The naming is a vestige of Dygraph's original PlotKit roots.
29 *
30 * @constructor
31 */
c0f54d4f 32var DygraphLayout = function(dygraph) {
74a5af31 33 this.dygraph_ = dygraph;
758a629f 34 this.datasets = [];
82c6fe4d 35 this.setNames = [];
758a629f 36 this.annotations = [];
74a5af31 37 this.yAxes_ = null;
a12a78ae 38 this.points = null;
74a5af31
DV
39
40 // TODO(danvk): it's odd that xTicks_ and yTicks_ are inputs, but xticks and
41 // yticks are outputs. Clean this up.
42 this.xTicks_ = null;
43 this.yTicks_ = null;
44};
45
46DygraphLayout.prototype.attr_ = function(name) {
47 return this.dygraph_.attr_(name);
48};
49
50DygraphLayout.prototype.addDataset = function(setname, set_xy) {
82c6fe4d
KW
51 this.datasets.push(set_xy);
52 this.setNames.push(setname);
74a5af31
DV
53};
54
70be5ed1 55DygraphLayout.prototype.getPlotArea = function() {
0d216a60 56 return this.area_;
758a629f 57};
70be5ed1 58
ccd9d7c2
PF
59// Compute the box which the chart should be drawn in. This is the canvas's
60// box, less space needed for axis and chart labels.
ec475f44 61// NOTE: This should only be called by Dygraph.predraw_().
0d216a60 62DygraphLayout.prototype.computePlotArea = function() {
ccd9d7c2
PF
63 var area = {
64 // TODO(danvk): per-axis setting.
65 x: 0,
66 y: 0
67 };
f8540c66 68
ccd9d7c2
PF
69 area.w = this.dygraph_.width_ - area.x - this.attr_('rightGap');
70 area.h = this.dygraph_.height_;
6dca682f
DV
71
72 // Let plugins reserve space.
73 var e = {
74 chart_div: this.dygraph_.graphDiv,
75 reserveSpaceLeft: function(px) {
76 var r = {
77 x: area.x,
78 y: area.y,
79 w: px,
80 h: area.h
81 };
82 area.x += px;
83 area.w -= px;
84 return r;
85 },
1c177b6a
DV
86 reserveSpaceRight: function(px) {
87 var r = {
88 x: area.x + area.w - px,
89 y: area.y,
90 w: px,
91 h: area.h
92 };
93 area.w -= px;
94 return r;
95 },
6dca682f
DV
96 reserveSpaceTop: function(px) {
97 var r = {
98 x: area.x,
99 y: area.y,
100 w: area.w,
101 h: px
102 };
103 area.y += px;
104 area.h -= px;
105 return r;
106 },
1c177b6a
DV
107 reserveSpaceBottom: function(px) {
108 var r = {
109 x: area.x,
110 y: area.y + area.h - px,
111 w: area.w,
112 h: px
113 };
114 area.h -= px;
115 return r;
116 },
6dca682f
DV
117 chartRect: function() {
118 return {x:area.x, y:area.y, w:area.w, h:area.h};
119 }
120 };
121 this.dygraph_.cascadeEvents_('layout', e);
122
0d216a60 123 this.area_ = area;
ccd9d7c2
PF
124};
125
74a5af31
DV
126DygraphLayout.prototype.setAnnotations = function(ann) {
127 // The Dygraph object's annotations aren't parsed. We parse them here and
128 // save a copy. If there is no parser, then the user must be using raw format.
129 this.annotations = [];
130 var parse = this.attr_('xValueParser') || function(x) { return x; };
131 for (var i = 0; i < ann.length; i++) {
132 var a = {};
b5481aea 133 if (!ann[i].xval && ann[i].x === undefined) {
74a5af31
DV
134 this.dygraph_.error("Annotations must have an 'x' property");
135 return;
136 }
137 if (ann[i].icon &&
138 !(ann[i].hasOwnProperty('width') &&
139 ann[i].hasOwnProperty('height'))) {
140 this.dygraph_.error("Must set width and height when setting " +
141 "annotation.icon property");
142 return;
143 }
144 Dygraph.update(a, ann[i]);
145 if (!a.xval) a.xval = parse(a.x);
146 this.annotations.push(a);
147 }
148};
149
150DygraphLayout.prototype.setXTicks = function(xTicks) {
151 this.xTicks_ = xTicks;
152};
153
154// TODO(danvk): add this to the Dygraph object's API or move it into Layout.
155DygraphLayout.prototype.setYAxes = function (yAxes) {
156 this.yAxes_ = yAxes;
157};
158
159DygraphLayout.prototype.setDateWindow = function(dateWindow) {
160 this.dateWindow_ = dateWindow;
161};
162
163DygraphLayout.prototype.evaluate = function() {
164 this._evaluateLimits();
165 this._evaluateLineCharts();
166 this._evaluateLineTicks();
167 this._evaluateAnnotations();
168};
169
170DygraphLayout.prototype._evaluateLimits = function() {
fa460473
KW
171 var xlimits = this.dygraph_.xAxisRange();
172 this.minxval = xlimits[0];
173 this.maxxval = xlimits[1];
174 var xrange = xlimits[1] - xlimits[0];
175 this.xscale = (xrange !== 0 ? 1 / xrange : 1.0);
74a5af31
DV
176
177 for (var i = 0; i < this.yAxes_.length; i++) {
178 var axis = this.yAxes_[i];
179 axis.minyval = axis.computedValueRange[0];
180 axis.maxyval = axis.computedValueRange[1];
181 axis.yrange = axis.maxyval - axis.minyval;
758a629f 182 axis.yscale = (axis.yrange !== 0 ? 1.0 / axis.yrange : 1.0);
74a5af31
DV
183
184 if (axis.g.attr_("logscale")) {
185 axis.ylogrange = Dygraph.log10(axis.maxyval) - Dygraph.log10(axis.minyval);
758a629f 186 axis.ylogscale = (axis.ylogrange !== 0 ? 1.0 / axis.ylogrange : 1.0);
74a5af31
DV
187 if (!isFinite(axis.ylogrange) || isNaN(axis.ylogrange)) {
188 axis.g.error('axis ' + i + ' of graph at ' + axis.g +
189 ' can\'t be displayed in log scale for range [' +
190 axis.minyval + ' - ' + axis.maxyval + ']');
191 }
192 }
193 }
194};
195
23db4e07
RK
196DygraphLayout._calcYNormal = function(axis, value, logscale) {
197 if (logscale) {
7f028980
DV
198 return 1.0 - ((Dygraph.log10(value) - Dygraph.log10(axis.minyval)) * axis.ylogscale);
199 } else {
200 return 1.0 - ((value - axis.minyval) * axis.yscale);
201 }
202};
203
74a5af31 204DygraphLayout.prototype._evaluateLineCharts = function() {
04c104d7 205 var connectSeparated = this.attr_('connectSeparatedPoints');
a12a78ae
DV
206
207 // series index -> point index in series -> |point| structure
208 this.points = new Array(this.datasets.length);
209
b843b52c
RK
210 // TODO(bhs): these loops are a hot-spot for high-point-count charts. In fact,
211 // on chrome+linux, they are 6 times more expensive than iterating through the
212 // points and drawing the lines. The brunt of the cost comes from allocating
213 // the |point| structures.
d9ab36fa 214 var boundaryIdStart = this.dygraph_.getLeftBoundary_();
a12a78ae 215 for (var setIdx = 0; setIdx < this.datasets.length; setIdx++) {
82c6fe4d
KW
216 var dataset = this.datasets[setIdx];
217 var setName = this.setNames[setIdx];
74a5af31 218 var axis = this.dygraph_.axisPropertiesForSeries(setName);
23db4e07 219 // TODO (konigsberg): use optionsForAxis instead.
8e19509a 220 var logscale = this.dygraph_.attributes_.getForSeries("logscale", setName);
74a5af31 221
a12a78ae
DV
222 // Preallocating the size of points reduces reallocations, and therefore,
223 // calls to collect garbage.
224 var seriesPoints = new Array(dataset.length);
225
74a5af31
DV
226 for (var j = 0; j < dataset.length; j++) {
227 var item = dataset[j];
57915b7a
RK
228 var xValue = DygraphLayout.parseFloat_(item[0]);
229 var yValue = DygraphLayout.parseFloat_(item[1]);
ecf9b464 230
4ab8db0c 231 // Range from 0-1 where 0 represents left and 1 represents right.
7f028980
DV
232 var xNormal = (xValue - this.minxval) * this.xscale;
233 // Range from 0-1 where 0 represents top and 1 represents bottom
23db4e07 234 var yNormal = DygraphLayout._calcYNormal(axis, yValue, logscale);
7f028980 235
a12a78ae
DV
236 // TODO(danvk): drop the point in this case, don't null it.
237 // The nulls create complexity in DygraphCanvasRenderer._drawSeries.
57915b7a 238 if (connectSeparated && item[1] === null) {
b843b52c
RK
239 yValue = null;
240 }
a12a78ae 241 seriesPoints[j] = {
f9414b11
DV
242 x: xNormal,
243 y: yNormal,
244 xval: xValue,
245 yval: yValue,
b616fad1 246 name: setName, // TODO(danvk): is this really necessary?
0c667194 247 idx: j + boundaryIdStart
f9414b11 248 };
74a5af31 249 }
a12a78ae
DV
250
251 this.points[setIdx] = seriesPoints;
74a5af31
DV
252 }
253};
254
57915b7a
RK
255/**
256 * Optimized replacement for parseFloat, which was way too slow when almost
257 * all values were type number, with few edge cases, none of which were strings.
258 */
259DygraphLayout.parseFloat_ = function(val) {
260 // parseFloat(null) is NaN
261 if (val === null) {
262 return NaN;
263 }
264
265 // Assume it's a number or NaN. If it's something else, I'll be shocked.
266 return val;
42a9ebb8 267};
57915b7a 268
74a5af31 269DygraphLayout.prototype._evaluateLineTicks = function() {
758a629f
DV
270 var i, tick, label, pos;
271 this.xticks = [];
272 for (i = 0; i < this.xTicks_.length; i++) {
273 tick = this.xTicks_[i];
274 label = tick.label;
275 pos = this.xscale * (tick.v - this.minxval);
74a5af31
DV
276 if ((pos >= 0.0) && (pos <= 1.0)) {
277 this.xticks.push([pos, label]);
278 }
279 }
280
758a629f
DV
281 this.yticks = [];
282 for (i = 0; i < this.yAxes_.length; i++ ) {
74a5af31
DV
283 var axis = this.yAxes_[i];
284 for (var j = 0; j < axis.ticks.length; j++) {
758a629f
DV
285 tick = axis.ticks[j];
286 label = tick.label;
287 pos = this.dygraph_.toPercentYCoord(tick.v, i);
74a5af31
DV
288 if ((pos >= 0.0) && (pos <= 1.0)) {
289 this.yticks.push([i, pos, label]);
290 }
291 }
292 }
293};
294
295
296/**
297 * Behaves the same way as PlotKit.Layout, but also copies the errors
298 * @private
299 */
300DygraphLayout.prototype.evaluateWithError = function() {
301 this.evaluate();
302 if (!(this.attr_('errorBars') || this.attr_('customBars'))) return;
303
304 // Copy over the error terms
758a629f 305 var i = 0; // index in this.points
82c6fe4d 306 for (var setIdx = 0; setIdx < this.datasets.length; ++setIdx) {
a12a78ae 307 var points = this.points[setIdx];
74a5af31 308 var j = 0;
82c6fe4d
KW
309 var dataset = this.datasets[setIdx];
310 var setName = this.setNames[setIdx];
7f028980 311 var axis = this.dygraph_.axisPropertiesForSeries(setName);
23db4e07 312 // TODO (konigsberg): use optionsForAxis instead.
8e19509a 313 var logscale = this.dygraph_.attributes_.getForSeries("logscale", setName);
23db4e07 314
758a629f 315 for (j = 0; j < dataset.length; j++, i++) {
74a5af31 316 var item = dataset[j];
57915b7a
RK
317 var xv = DygraphLayout.parseFloat_(item[0]);
318 var yv = DygraphLayout.parseFloat_(item[1]);
74a5af31 319
a12a78ae
DV
320 if (xv == points[j].xval &&
321 yv == points[j].yval) {
57915b7a
RK
322 var errorMinus = DygraphLayout.parseFloat_(item[2]);
323 var errorPlus = DygraphLayout.parseFloat_(item[3]);
7f028980
DV
324
325 var yv_minus = yv - errorMinus;
326 var yv_plus = yv + errorPlus;
23db4e07
RK
327 points[j].y_top = DygraphLayout._calcYNormal(axis, yv_minus, logscale);
328 points[j].y_bottom = DygraphLayout._calcYNormal(axis, yv_plus, logscale);
74a5af31
DV
329 }
330 }
331 }
332};
333
334DygraphLayout.prototype._evaluateAnnotations = function() {
335 // Add the annotations to the point to which they belong.
336 // Make a map from (setName, xval) to annotation for quick lookups.
758a629f 337 var i;
74a5af31 338 var annotations = {};
758a629f 339 for (i = 0; i < this.annotations.length; i++) {
74a5af31
DV
340 var a = this.annotations[i];
341 annotations[a.xval + "," + a.series] = a;
342 }
343
344 this.annotated_points = [];
d570a072
AR
345
346 // Exit the function early if there are no annotations.
347 if (!this.annotations || !this.annotations.length) {
348 return;
349 }
ccd9d7c2 350
d570a072 351 // TODO(antrob): loop through annotations not points.
a12a78ae
DV
352 for (var setIdx = 0; setIdx < this.points.length; setIdx++) {
353 var points = this.points[setIdx];
354 for (i = 0; i < points.length; i++) {
355 var p = points[i];
356 var k = p.xval + "," + p.name;
357 if (k in annotations) {
358 p.annotation = annotations[k];
359 this.annotated_points.push(p);
360 }
74a5af31
DV
361 }
362 }
363};
364
365/**
366 * Convenience function to remove all the data sets from a graph
367 */
368DygraphLayout.prototype.removeAllDatasets = function() {
369 delete this.datasets;
82c6fe4d
KW
370 delete this.setNames;
371 delete this.setPointsLengths;
372 delete this.setPointsOffsets;
758a629f 373 this.datasets = [];
82c6fe4d
KW
374 this.setNames = [];
375 this.setPointsLengths = [];
376 this.setPointsOffsets = [];
74a5af31
DV
377};
378
379/**
380 * Return a copy of the point at the indicated index, with its yval unstacked.
381 * @param int index of point in layout_.points
382 */
a12a78ae
DV
383DygraphLayout.prototype.unstackPointAtIndex = function(setIdx, row) {
384 var point = this.points[setIdx][row];
52ca2280 385 // If the point is missing, no unstacking is necessary
907121a8 386 if (!Dygraph.isValidPoint(point)) {
c6bdcd60
AV
387 return point;
388 }
ccd9d7c2 389
74a5af31 390 // Clone the point since we modify it
ccd9d7c2 391 var unstackedPoint = {};
758a629f
DV
392 for (var pt in point) {
393 unstackedPoint[pt] = point[pt];
74a5af31 394 }
ccd9d7c2 395
74a5af31
DV
396 if (!this.attr_("stackedGraph")) {
397 return unstackedPoint;
398 }
ccd9d7c2
PF
399
400 // The unstacked yval is equal to the current yval minus the yval of the
74a5af31 401 // next point at the same xval.
907121a8
VS
402 // We need to iterate over setIdx just in case some series have invalid values
403 // at current row
404 for(setIdx++; setIdx < this.points.length; setIdx++) {
405 var nextPoint = this.points[setIdx][row];
406 if (nextPoint.xval == point.xval && // should always be true?
407 Dygraph.isValidPoint(nextPoint)) {
408 unstackedPoint.yval -= nextPoint.yval;
409 break; // stop at first valid point
410 }
74a5af31 411 }
ccd9d7c2 412
74a5af31 413 return unstackedPoint;
758a629f 414};