Start porting gallery
[dygraphs.git] / src / 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/**
6ecc0739
DV
8 * @fileoverview DygraphOptions is responsible for parsing and returning
9 * information about options.
c1780ad0
RK
10 */
11
3ce712e6 12// TODO: remove this jshint directive & fix the warnings.
384bfa4a 13/*jshint sub:true */
83b0c192 14/*global Dygraph:false */
c1780ad0
RK
15"use strict";
16
6ecc0739
DV
17import * as utils from './dygraph-utils';
18import DEFAULT_ATTRS from './dygraph-default-attrs';
19
c1780ad0 20/*
e321ff2a 21 * Interesting member variables: (REMOVING THIS LIST AS I CLOSURIZE)
673a3b87 22 * global_ - global attributes (common among all graphs, AIUI)
ed30673a 23 * user - attributes set by the user
242a8bc8 24 * series_ - { seriesName -> { idx, yAxis, options }}
c1780ad0
RK
25 */
26
27/**
c1780ad0
RK
28 * This parses attributes into an object that can be easily queried.
29 *
5daa462d
RK
30 * It doesn't necessarily mean that all options are available, specifically
31 * if labels are not yet available, since those drive details of the per-series
32 * and per-axis options.
33 *
e321ff2a 34 * @param {Dygraph} dygraph The chart to which these options belong.
d67a4279 35 * @constructor
c1780ad0
RK
36 */
37var DygraphOptions = function(dygraph) {
e321ff2a
RK
38 /**
39 * The dygraph.
34655aba 40 * @type {!Dygraph}
e321ff2a 41 */
c1780ad0 42 this.dygraph_ = dygraph;
e321ff2a
RK
43
44 /**
45 * Array of axis index to { series : [ series names ] , options : { axis-specific options. }
72621b9a 46 * @type {Array.<{series : Array.<string>, options : Object}>} @private
e321ff2a 47 */
48dc3815 48 this.yAxes_ = [];
e321ff2a
RK
49
50 /**
2ed3480b
RK
51 * Contains x-axis specific options, which are stored in the options key.
52 * This matches the yAxes_ object structure (by being a dictionary with an
53 * options element) allowing for shared code.
54 * @type {options: Object} @private
e321ff2a 55 */
48dc3815 56 this.xAxis_ = {};
ed30673a 57 this.series_ = {};
c1780ad0 58
5daa462d 59 // Once these two objects are initialized, you can call get();
ed30673a
RK
60 this.global_ = this.dygraph_.attrs_;
61 this.user_ = this.dygraph_.user_attrs_ || {};
c1780ad0 62
e321ff2a
RK
63 /**
64 * A list of series in columnar order.
65 * @type {Array.<string>}
66 */
67 this.labels_ = [];
68
5daa462d 69 this.highlightSeries_ = this.get("highlightSeriesOpts") || {};
dd724e22 70 this.reparseSeries();
5daa462d 71};
34825ef5 72
e321ff2a 73/**
632bd78c
RK
74 * Not optimal, but does the trick when you're only using two axes.
75 * If we move to more axes, this can just become a function.
e321ff2a 76 *
34655aba 77 * @type {Object.<number>}
e321ff2a 78 * @private
632bd78c
RK
79 */
80DygraphOptions.AXIS_STRING_MAPPINGS_ = {
81 'y' : 0,
82 'Y' : 0,
83 'y1' : 0,
84 'Y1' : 0,
85 'y2' : 1,
86 'Y2' : 1
04f2bce6 87};
632bd78c 88
3f265488
LB
89/**
90 * @param {string|number} axis
91 * @private
92 */
632bd78c
RK
93DygraphOptions.axisToIndex_ = function(axis) {
94 if (typeof(axis) == "string") {
95 if (DygraphOptions.AXIS_STRING_MAPPINGS_.hasOwnProperty(axis)) {
96 return DygraphOptions.AXIS_STRING_MAPPINGS_[axis];
97 }
04f2bce6 98 throw "Unknown axis : " + axis;
632bd78c
RK
99 }
100 if (typeof(axis) == "number") {
04f2bce6 101 if (axis === 0 || axis === 1) {
632bd78c
RK
102 return axis;
103 }
04f2bce6 104 throw "Dygraphs only supports two y-axes, indexed from 0-1.";
632bd78c
RK
105 }
106 if (axis) {
107 throw "Unknown axis : " + axis;
108 }
109 // No axis specification means axis 0.
110 return 0;
111};
112
5daa462d
RK
113/**
114 * Reparses options that are all related to series. This typically occurs when
2fd143d3 115 * options are either updated, or source data has been made available.
5daa462d
RK
116 *
117 * TODO(konigsberg): The method name is kind of weak; fix.
118 */
34825ef5 119DygraphOptions.prototype.reparseSeries = function() {
9d562235
PF
120 var labels = this.get("labels");
121 if (!labels) {
122 return; // -- can't do more for now, will parse after getting the labels.
123 }
124
e321ff2a 125 this.labels_ = labels.slice(1);
c1780ad0 126
48dc3815
RK
127 this.yAxes_ = [ { series : [], options : {}} ]; // Always one axis at least.
128 this.xAxis_ = { options : {} };
ed30673a 129 this.series_ = {};
eb0da59f 130
0a5aa490 131 // Series are specified in the series element:
73e953cd
RK
132 //
133 // {
134 // labels: [ "X", "foo", "bar" ],
135 // pointSize: 3,
136 // series : {
137 // foo : {}, // options for foo
138 // bar : {} // options for bar
139 // }
140 // }
141 //
0a5aa490
RK
142 // So, if series is found, it's expected to contain per-series data, otherwise set a
143 // default.
f9b5a82c 144 var seriesDict = this.user_.series || {};
0a5aa490
RK
145 for (var idx = 0; idx < this.labels_.length; idx++) {
146 var seriesName = this.labels_[idx];
f9b5a82c 147 var optionsForSeries = seriesDict[seriesName] || {};
0a5aa490
RK
148 var yAxis = DygraphOptions.axisToIndex_(optionsForSeries["axis"]);
149
150 this.series_[seriesName] = {
151 idx: idx,
152 yAxis: yAxis,
153 options : optionsForSeries };
154
155 if (!this.yAxes_[yAxis]) {
156 this.yAxes_[yAxis] = { series : [ seriesName ], options : {} };
157 } else {
158 this.yAxes_[yAxis].series.push(seriesName);
c1780ad0
RK
159 }
160 }
161
6ad8b6a4 162 var axis_opts = this.user_["axes"] || {};
6ecc0739 163 utils.update(this.yAxes_[0].options, axis_opts["y"] || {});
48dc3815 164 if (this.yAxes_.length > 1) {
6ecc0739 165 utils.update(this.yAxes_[1].options, axis_opts["y2"] || {});
c1780ad0 166 }
6ecc0739 167 utils.update(this.xAxis_.options, axis_opts["x"] || {});
8887663f 168
6ecc0739 169 // if (DEBUG) this.validateOptions_();
c1780ad0
RK
170};
171
5daa462d
RK
172/**
173 * Get a global value.
174 *
a4aceb34 175 * @param {string} name the name of the option.
5daa462d
RK
176 */
177DygraphOptions.prototype.get = function(name) {
d574a45e 178 var result = this.getGlobalUser_(name);
2e3d8088 179 if (result !== null) {
d574a45e
RK
180 return result;
181 }
182 return this.getGlobalDefault_(name);
183};
184
185DygraphOptions.prototype.getGlobalUser_ = function(name) {
ed30673a
RK
186 if (this.user_.hasOwnProperty(name)) {
187 return this.user_[name];
c1780ad0 188 }
d574a45e
RK
189 return null;
190};
191
192DygraphOptions.prototype.getGlobalDefault_ = function(name) {
ed30673a
RK
193 if (this.global_.hasOwnProperty(name)) {
194 return this.global_[name];
c1780ad0 195 }
6ecc0739
DV
196 if (DEFAULT_ATTRS.hasOwnProperty(name)) {
197 return DEFAULT_ATTRS[name];
d574a45e 198 }
c1780ad0 199 return null;
83b0c192 200};
c1780ad0 201
5daa462d
RK
202/**
203 * Get a value for a specific axis. If there is no specific value for the axis,
204 * the global value is returned.
205 *
a4aceb34
RK
206 * @param {string} name the name of the option.
207 * @param {string|number} axis the axis to search. Can be the string representation
5daa462d
RK
208 * ("y", "y2") or the axis number (0, 1).
209 */
210DygraphOptions.prototype.getForAxis = function(name, axis) {
48dc3815
RK
211 var axisIdx;
212 var axisString;
213
214 // Since axis can be a number or a string, straighten everything out here.
5daa462d
RK
215 if (typeof(axis) == 'number') {
216 axisIdx = axis;
2e3d8088 217 axisString = axisIdx === 0 ? "y" : "y2";
5daa462d 218 } else {
48dc3815
RK
219 if (axis == "y1") { axis = "y"; } // Standardize on 'y'. Is this bad? I think so.
220 if (axis == "y") {
221 axisIdx = 0;
222 } else if (axis == "y2") {
223 axisIdx = 1;
224 } else if (axis == "x") {
225 axisIdx = -1; // simply a placeholder for below.
226 } else {
227 throw "Unknown axis " + axis;
228 }
229 axisString = axis;
5daa462d 230 }
48dc3815
RK
231
232 var userAxis = (axisIdx == -1) ? this.xAxis_ : this.yAxes_[axisIdx];
233
d574a45e 234 // Search the user-specified axis option first.
48dc3815
RK
235 if (userAxis) { // This condition could be removed if we always set up this.yAxes_ for y2.
236 var axisOptions = userAxis.options;
d574a45e
RK
237 if (axisOptions.hasOwnProperty(name)) {
238 return axisOptions[name];
239 }
240 }
c1780ad0 241
d574a45e 242 // User-specified global options second.
5b9b2142
RK
243 // But, hack, ignore globally-specified 'logscale' for 'x' axis declaration.
244 if (!(axis === 'x' && name === 'logscale')) {
245 var result = this.getGlobalUser_(name);
246 if (result !== null) {
247 return result;
248 }
c1780ad0 249 }
d574a45e 250 // Default axis options third.
6ecc0739 251 var defaultAxisOptions = DEFAULT_ATTRS.axes[axisString];
d574a45e
RK
252 if (defaultAxisOptions.hasOwnProperty(name)) {
253 return defaultAxisOptions[name];
254 }
255
256 // Default global options last.
257 return this.getGlobalDefault_(name);
5daa462d 258};
c1780ad0 259
5daa462d
RK
260/**
261 * Get a value for a specific series. If there is no specific value for the series,
262 * the value for the axis is returned (and afterwards, the global value.)
263 *
a4aceb34 264 * @param {string} name the name of the option.
8e19509a 265 * @param {string} series the series to search.
5daa462d
RK
266 */
267DygraphOptions.prototype.getForSeries = function(name, series) {
c1780ad0 268 // Honors indexes as series.
3f265488 269 if (series === this.dygraph_.getHighlightSeries()) {
ed30673a
RK
270 if (this.highlightSeries_.hasOwnProperty(name)) {
271 return this.highlightSeries_[name];
272 }
273 }
274
8e19509a 275 if (!this.series_.hasOwnProperty(series)) {
c1780ad0
RK
276 throw "Unknown series: " + series;
277 }
278
8e19509a 279 var seriesObj = this.series_[series];
c1780ad0
RK
280 var seriesOptions = seriesObj["options"];
281 if (seriesOptions.hasOwnProperty(name)) {
282 return seriesOptions[name];
283 }
ed30673a 284
5daa462d
RK
285 return this.getForAxis(name, seriesObj["yAxis"]);
286};
c1780ad0 287
673a3b87
RK
288/**
289 * Returns the number of y-axes on the chart.
e321ff2a 290 * @return {number} the number of axes.
673a3b87
RK
291 */
292DygraphOptions.prototype.numAxes = function() {
48dc3815 293 return this.yAxes_.length;
04f2bce6 294};
16f00742
RK
295
296/**
297 * Return the y-axis for a given series, specified by name.
298 */
8e19509a
RK
299DygraphOptions.prototype.axisForSeries = function(series) {
300 return this.series_[series].yAxis;
04f2bce6 301};
16f00742
RK
302
303/**
304 * Returns the options for the specified axis.
305 */
48dc3815 306// TODO(konigsberg): this is y-axis specific. Support the x axis.
16f00742 307DygraphOptions.prototype.axisOptions = function(yAxis) {
48dc3815 308 return this.yAxes_[yAxis].options;
04f2bce6 309};
16f00742
RK
310
311/**
312 * Return the series associated with an axis.
313 */
314DygraphOptions.prototype.seriesForAxis = function(yAxis) {
48dc3815 315 return this.yAxes_[yAxis].series;
04f2bce6 316};
6ad8b6a4
RK
317
318/**
319 * Return the list of all series, in their columnar order.
320 */
321DygraphOptions.prototype.seriesNames = function() {
322 return this.labels_;
04f2bce6 323};
6ad8b6a4 324
6ecc0739
DV
325// TODO: fix this
326// if (DEBUG) {
327if (false) {
8887663f
DV
328
329/**
330 * Validate all options.
331 * This requires Dygraph.OPTIONS_REFERENCE, which is only available in debug builds.
332 * @private
333 */
334DygraphOptions.prototype.validateOptions_ = function() {
335 if (typeof Dygraph.OPTIONS_REFERENCE === 'undefined') {
336 throw 'Called validateOptions_ in prod build.';
337 }
338
339 var that = this;
340 var validateOption = function(optionName) {
341 if (!Dygraph.OPTIONS_REFERENCE[optionName]) {
342 that.warnInvalidOption_(optionName);
343 }
344 };
345
346 var optionsDicts = [this.xAxis_.options,
347 this.yAxes_[0].options,
348 this.yAxes_[1] && this.yAxes_[1].options,
349 this.global_,
350 this.user_,
351 this.highlightSeries_];
b3cb0794
DV
352 var names = this.seriesNames();
353 for (var i = 0; i < names.length; i++) {
354 var name = names[i];
355 if (this.series_.hasOwnProperty(name)) {
356 optionsDicts.push(this.series_[name].options);
357 }
358 }
8887663f
DV
359 for (var i = 0; i < optionsDicts.length; i++) {
360 var dict = optionsDicts[i];
361 if (!dict) continue;
362 for (var optionName in dict) {
363 if (dict.hasOwnProperty(optionName)) {
364 validateOption(optionName);
365 }
366 }
367 }
368};
369
370var WARNINGS = {}; // Only show any particular warning once.
371
372/**
373 * Logs a warning about invalid options.
374 * TODO: make this throw for testing
375 * @private
376 */
377DygraphOptions.prototype.warnInvalidOption_ = function(optionName) {
378 if (!WARNINGS[optionName]) {
ac3070f8 379 WARNINGS[optionName] = true;
8887663f
DV
380 var isSeries = (this.labels_.indexOf(optionName) >= 0);
381 if (isSeries) {
382 console.warn('Use new-style per-series options (saw ' + optionName + ' as top-level options key). See http://bit.ly/1tceaJs');
383 } else {
384 console.warn('Unknown option ' + optionName + ' (full list of options at dygraphs.com/options.html');
ac3070f8 385 throw "invalid option " + optionName;
8887663f 386 }
8887663f
DV
387 }
388};
389
b3cb0794
DV
390// Reset list of previously-shown warnings. Used for testing.
391DygraphOptions.resetWarnings_ = function() {
392 WARNINGS = {};
393};
394
8887663f
DV
395}
396
6ecc0739 397export default DygraphOptions;