Merge branch 'master' of github.com:danvk/dygraphs
[dygraphs.git] / dygraph-options.js
CommitLineData
c1780ad0 1/**
8e1ec00c
MF
2 * @license
3 * Copyright 2011 Dan Vanderkam (danvdk@gmail.com)
4 * MIT-licensed (http://opensource.org/licenses/MIT)
5 */
6
7/**
c1780ad0
RK
8 * @fileoverview DygraphOptions is responsible for parsing and returning information about options.
9 *
10 * Still tightly coupled to Dygraphs, we could remove some of that, you know.
11 */
12
384bfa4a
DV
13var DygraphOptions = (function() {
14
15/*jshint sub:true */
83b0c192 16/*global Dygraph:false */
c1780ad0
RK
17"use strict";
18
19/*
20 * Interesting member variables:
21 * dygraph_ - the graph.
673a3b87 22 * global_ - global attributes (common among all graphs, AIUI)
ed30673a 23 * user - attributes set by the user
48dc3815
RK
24 * yAxes_ - array of axis index to { series : [ series names ] , options : { axis-specific options. }
25 * xAxis_ - { options : { axis-specific options. }
242a8bc8 26 * series_ - { seriesName -> { idx, yAxis, options }}
673a3b87 27 * labels_ - used as mapping from index to series name.
c1780ad0
RK
28 */
29
30/**
c1780ad0
RK
31 * This parses attributes into an object that can be easily queried.
32 *
5daa462d
RK
33 * It doesn't necessarily mean that all options are available, specifically
34 * if labels are not yet available, since those drive details of the per-series
35 * and per-axis options.
36 *
3f265488 37 * @param {Dygraph} dygraph The chart to which these options belong.
d67a4279 38 * @constructor
c1780ad0
RK
39 */
40var DygraphOptions = function(dygraph) {
41 this.dygraph_ = dygraph;
3f265488
LB
42
43 /** @type {Array.<{options: Object, series: string}>} @private */
48dc3815 44 this.yAxes_ = [];
3f265488
LB
45 /** @type {{options: Object}} @private */
46 this.xAxis_ = {options: {}};
47 /** @type {Object} @private */
ed30673a 48 this.series_ = {};
c1780ad0 49
5daa462d 50 // Once these two objects are initialized, you can call get();
ed30673a
RK
51 this.global_ = this.dygraph_.attrs_;
52 this.user_ = this.dygraph_.user_attrs_ || {};
c1780ad0 53
5daa462d 54 this.highlightSeries_ = this.get("highlightSeriesOpts") || {};
dd724e22 55 this.reparseSeries();
5daa462d 56};
34825ef5 57
632bd78c
RK
58/*
59 * Not optimal, but does the trick when you're only using two axes.
60 * If we move to more axes, this can just become a function.
61 */
62DygraphOptions.AXIS_STRING_MAPPINGS_ = {
63 'y' : 0,
64 'Y' : 0,
65 'y1' : 0,
66 'Y1' : 0,
67 'y2' : 1,
68 'Y2' : 1
04f2bce6 69};
632bd78c 70
3f265488
LB
71/**
72 * @param {string|number} axis
73 * @private
74 */
632bd78c
RK
75DygraphOptions.axisToIndex_ = function(axis) {
76 if (typeof(axis) == "string") {
77 if (DygraphOptions.AXIS_STRING_MAPPINGS_.hasOwnProperty(axis)) {
78 return DygraphOptions.AXIS_STRING_MAPPINGS_[axis];
79 }
04f2bce6 80 throw "Unknown axis : " + axis;
632bd78c
RK
81 }
82 if (typeof(axis) == "number") {
04f2bce6 83 if (axis === 0 || axis === 1) {
632bd78c
RK
84 return axis;
85 }
04f2bce6 86 throw "Dygraphs only supports two y-axes, indexed from 0-1.";
632bd78c
RK
87 }
88 if (axis) {
89 throw "Unknown axis : " + axis;
90 }
91 // No axis specification means axis 0.
92 return 0;
93};
94
5daa462d
RK
95/**
96 * Reparses options that are all related to series. This typically occurs when
2fd143d3 97 * options are either updated, or source data has been made available.
5daa462d
RK
98 *
99 * TODO(konigsberg): The method name is kind of weak; fix.
100 */
34825ef5 101DygraphOptions.prototype.reparseSeries = function() {
9d562235
PF
102 var labels = this.get("labels");
103 if (!labels) {
104 return; // -- can't do more for now, will parse after getting the labels.
105 }
106
cd872296 107 this.labels_ = labels.slice(1);
c1780ad0 108
48dc3815
RK
109 this.yAxes_ = [ { series : [], options : {}} ]; // Always one axis at least.
110 this.xAxis_ = { options : {} };
ed30673a 111 this.series_ = {};
eb0da59f 112
73e953cd
RK
113 // Traditionally, per-series options were specified right up there with the options. For instance
114 // {
115 // labels: [ "X", "foo", "bar" ],
116 // pointSize: 3,
117 // foo : {}, // options for foo
118 // bar : {} // options for bar
119 // }
120 //
121 // Moving forward, series really should be specified in the series element, separating them.
122 // like so:
123 //
124 // {
125 // labels: [ "X", "foo", "bar" ],
126 // pointSize: 3,
127 // series : {
128 // foo : {}, // options for foo
129 // bar : {} // options for bar
130 // }
131 // }
132 //
133 // So, if series is found, it's expected to contain per-series data, otherwise we fall
134 // back.
632bd78c 135 var oldStyleSeries = !this.user_["series"];
9d562235 136
632bd78c
RK
137 if (oldStyleSeries) {
138 var axisId = 0; // 0-offset; there's always one.
139 // Go through once, add all the series, and for those with {} axis options, add a new axis.
cd872296
RK
140 for (var idx = 0; idx < this.labels_.length; idx++) {
141 var seriesName = this.labels_[idx];
9d562235 142
632bd78c 143 var optionsForSeries = this.user_[seriesName] || {};
9d562235 144
632bd78c
RK
145 var yAxis = 0;
146 var axis = optionsForSeries["axis"];
147 if (typeof(axis) == 'object') {
148 yAxis = ++axisId;
48dc3815 149 this.yAxes_[yAxis] = { series : [ seriesName ], options : axis };
632bd78c 150 }
c1780ad0 151
6ad8b6a4
RK
152 // Associate series without axis options with axis 0.
153 if (!axis) { // undefined
48dc3815 154 this.yAxes_[0].series.push(seriesName);
6ad8b6a4 155 }
c1780ad0 156
632bd78c
RK
157 this.series_[seriesName] = { idx: idx, yAxis: yAxis, options : optionsForSeries };
158 }
9d562235 159
632bd78c
RK
160 // Go through one more time and assign series to an axis defined by another
161 // series, e.g. { 'Y1: { axis: {} }, 'Y2': { axis: 'Y1' } }
cd872296
RK
162 for (var idx = 0; idx < this.labels_.length; idx++) {
163 var seriesName = this.labels_[idx];
9d562235 164 var optionsForSeries = this.series_[seriesName]["options"];
632bd78c 165 var axis = optionsForSeries["axis"];
9d562235 166
632bd78c
RK
167 if (typeof(axis) == 'string') {
168 if (!this.series_.hasOwnProperty(axis)) {
e1119361 169 Dygraph.error("Series " + seriesName + " wants to share a y-axis with " +
632bd78c 170 "series " + axis + ", which does not define its own axis.");
e1119361 171 return;
632bd78c 172 }
6ad8b6a4
RK
173 var yAxis = this.series_[axis].yAxis;
174 this.series_[seriesName].yAxis = yAxis;
48dc3815 175 this.yAxes_[yAxis].series.push(seriesName);
632bd78c
RK
176 }
177 }
178 } else {
cd872296
RK
179 for (var idx = 0; idx < this.labels_.length; idx++) {
180 var seriesName = this.labels_[idx];
632bd78c
RK
181 var optionsForSeries = this.user_.series[seriesName] || {};
182 var yAxis = DygraphOptions.axisToIndex_(optionsForSeries["axis"]);
c1780ad0 183
632bd78c
RK
184 this.series_[seriesName] = {
185 idx: idx,
186 yAxis: yAxis,
187 options : optionsForSeries };
c1780ad0 188
48dc3815
RK
189 if (!this.yAxes_[yAxis]) {
190 this.yAxes_[yAxis] = { series : [ seriesName ], options : {} };
6ad8b6a4 191 } else {
48dc3815 192 this.yAxes_[yAxis].series.push(seriesName);
c1780ad0 193 }
c1780ad0
RK
194 }
195 }
196
6ad8b6a4 197 var axis_opts = this.user_["axes"] || {};
48dc3815
RK
198 Dygraph.update(this.yAxes_[0].options, axis_opts["y"] || {});
199 if (this.yAxes_.length > 1) {
9d562235 200 Dygraph.update(this.yAxes_[1].options, axis_opts["y2"] || {});
c1780ad0 201 }
48dc3815 202 Dygraph.update(this.xAxis_.options, axis_opts["x"] || {});
c1780ad0
RK
203};
204
5daa462d
RK
205/**
206 * Get a global value.
207 *
a4aceb34 208 * @param {string} name the name of the option.
5daa462d
RK
209 */
210DygraphOptions.prototype.get = function(name) {
d574a45e 211 var result = this.getGlobalUser_(name);
2e3d8088 212 if (result !== null) {
d574a45e
RK
213 return result;
214 }
215 return this.getGlobalDefault_(name);
216};
217
218DygraphOptions.prototype.getGlobalUser_ = function(name) {
ed30673a
RK
219 if (this.user_.hasOwnProperty(name)) {
220 return this.user_[name];
c1780ad0 221 }
d574a45e
RK
222 return null;
223};
224
225DygraphOptions.prototype.getGlobalDefault_ = function(name) {
ed30673a
RK
226 if (this.global_.hasOwnProperty(name)) {
227 return this.global_[name];
c1780ad0 228 }
d574a45e
RK
229 if (Dygraph.DEFAULT_ATTRS.hasOwnProperty(name)) {
230 return Dygraph.DEFAULT_ATTRS[name];
231 }
c1780ad0 232 return null;
83b0c192 233};
c1780ad0 234
5daa462d
RK
235/**
236 * Get a value for a specific axis. If there is no specific value for the axis,
237 * the global value is returned.
238 *
a4aceb34
RK
239 * @param {string} name the name of the option.
240 * @param {string|number} axis the axis to search. Can be the string representation
5daa462d
RK
241 * ("y", "y2") or the axis number (0, 1).
242 */
243DygraphOptions.prototype.getForAxis = function(name, axis) {
48dc3815
RK
244 var axisIdx;
245 var axisString;
246
247 // Since axis can be a number or a string, straighten everything out here.
5daa462d
RK
248 if (typeof(axis) == 'number') {
249 axisIdx = axis;
2e3d8088 250 axisString = axisIdx === 0 ? "y" : "y2";
5daa462d 251 } else {
48dc3815
RK
252 if (axis == "y1") { axis = "y"; } // Standardize on 'y'. Is this bad? I think so.
253 if (axis == "y") {
254 axisIdx = 0;
255 } else if (axis == "y2") {
256 axisIdx = 1;
257 } else if (axis == "x") {
258 axisIdx = -1; // simply a placeholder for below.
259 } else {
260 throw "Unknown axis " + axis;
261 }
262 axisString = axis;
5daa462d 263 }
48dc3815
RK
264
265 var userAxis = (axisIdx == -1) ? this.xAxis_ : this.yAxes_[axisIdx];
266
d574a45e 267 // Search the user-specified axis option first.
48dc3815
RK
268 if (userAxis) { // This condition could be removed if we always set up this.yAxes_ for y2.
269 var axisOptions = userAxis.options;
d574a45e
RK
270 if (axisOptions.hasOwnProperty(name)) {
271 return axisOptions[name];
272 }
273 }
c1780ad0 274
d574a45e
RK
275 // User-specified global options second.
276 var result = this.getGlobalUser_(name);
2e3d8088 277 if (result !== null) {
d574a45e 278 return result;
c1780ad0 279 }
d574a45e
RK
280
281 // Default axis options third.
d574a45e
RK
282 var defaultAxisOptions = Dygraph.DEFAULT_ATTRS.axes[axisString];
283 if (defaultAxisOptions.hasOwnProperty(name)) {
284 return defaultAxisOptions[name];
285 }
286
287 // Default global options last.
288 return this.getGlobalDefault_(name);
5daa462d 289};
c1780ad0 290
5daa462d
RK
291/**
292 * Get a value for a specific series. If there is no specific value for the series,
293 * the value for the axis is returned (and afterwards, the global value.)
294 *
a4aceb34 295 * @param {string} name the name of the option.
8e19509a 296 * @param {string} series the series to search.
5daa462d
RK
297 */
298DygraphOptions.prototype.getForSeries = function(name, series) {
c1780ad0 299 // Honors indexes as series.
3f265488 300 if (series === this.dygraph_.getHighlightSeries()) {
ed30673a
RK
301 if (this.highlightSeries_.hasOwnProperty(name)) {
302 return this.highlightSeries_[name];
303 }
304 }
305
8e19509a 306 if (!this.series_.hasOwnProperty(series)) {
c1780ad0
RK
307 throw "Unknown series: " + series;
308 }
309
8e19509a 310 var seriesObj = this.series_[series];
c1780ad0
RK
311 var seriesOptions = seriesObj["options"];
312 if (seriesOptions.hasOwnProperty(name)) {
313 return seriesOptions[name];
314 }
ed30673a 315
5daa462d
RK
316 return this.getForAxis(name, seriesObj["yAxis"]);
317};
c1780ad0 318
673a3b87
RK
319/**
320 * Returns the number of y-axes on the chart.
3f265488 321 * @return {number} the number of axes.
673a3b87
RK
322 */
323DygraphOptions.prototype.numAxes = function() {
48dc3815 324 return this.yAxes_.length;
04f2bce6 325};
16f00742
RK
326
327/**
328 * Return the y-axis for a given series, specified by name.
329 */
8e19509a
RK
330DygraphOptions.prototype.axisForSeries = function(series) {
331 return this.series_[series].yAxis;
04f2bce6 332};
16f00742
RK
333
334/**
335 * Returns the options for the specified axis.
336 */
48dc3815 337// TODO(konigsberg): this is y-axis specific. Support the x axis.
16f00742 338DygraphOptions.prototype.axisOptions = function(yAxis) {
48dc3815 339 return this.yAxes_[yAxis].options;
04f2bce6 340};
16f00742
RK
341
342/**
343 * Return the series associated with an axis.
344 */
345DygraphOptions.prototype.seriesForAxis = function(yAxis) {
48dc3815 346 return this.yAxes_[yAxis].series;
04f2bce6 347};
6ad8b6a4
RK
348
349/**
350 * Return the list of all series, in their columnar order.
351 */
352DygraphOptions.prototype.seriesNames = function() {
353 return this.labels_;
04f2bce6 354};
6ad8b6a4 355
9d562235 356/* Are we using this? */
6ad8b6a4
RK
357/**
358 * Return the index of the specified series.
359 * @param {string} series the series name.
360 */
361DygraphOptions.prototype.indexOfSeries = function(series) {
362 return this.series_[series].idx;
04f2bce6 363};
384bfa4a
DV
364
365return DygraphOptions;
366
367})();