3 * Copyright 2011 Dan Vanderkam (danvdk@gmail.com)
4 * MIT-licensed (http://opensource.org/licenses/MIT)
8 * @fileoverview DygraphOptions is responsible for parsing and returning information about options.
10 * Still tightly coupled to Dygraphs, we could remove some of that, you know.
13 var DygraphOptions
= (function() {
16 /*global Dygraph:false */
20 * Interesting member variables: (REMOVING THIS LIST AS I CLOSURIZE)
21 * global_ - global attributes (common among all graphs, AIUI)
22 * user - attributes set by the user
23 * series_ - { seriesName -> { idx, yAxis, options }}
27 * This parses attributes into an object that can be easily queried.
29 * It doesn't necessarily mean that all options are available, specifically
30 * if labels are not yet available, since those drive details of the per-series
31 * and per-axis options.
33 * @param {Dygraph} dygraph The chart to which these options belong.
36 var DygraphOptions
= function(dygraph
) {
41 this.dygraph_
= dygraph
;
44 * Array of axis index to { series : [ series names ] , options : { axis-specific options. }
45 * @type {Array.<{series : Array.<string>, options : Object}>} @private
50 * Contains x-axis specific options, which are stored in the options key.
51 * This matches the yAxes_ object structure (by being a dictionary with an
52 * options element) allowing for shared code.
53 * @type {options: Object} @private
58 // Once these two objects are initialized, you can call get();
59 this.global_
= this.dygraph_
.attrs_
;
60 this.user_
= this.dygraph_
.user_attrs_
|| {};
63 * A list of series in columnar order.
64 * @type {Array.<string>}
68 this.highlightSeries_
= this.get("highlightSeriesOpts") || {};
73 * Not optimal, but does the trick when you're only using two axes.
74 * If we move to more axes, this can just become a function.
76 * @type {Object.<number>}
79 DygraphOptions
.AXIS_STRING_MAPPINGS_
= {
89 * @param {string|number} axis
92 DygraphOptions
.axisToIndex_
= function(axis
) {
93 if (typeof(axis
) == "string") {
94 if (DygraphOptions
.AXIS_STRING_MAPPINGS_
.hasOwnProperty(axis
)) {
95 return DygraphOptions
.AXIS_STRING_MAPPINGS_
[axis
];
97 throw "Unknown axis : " + axis
;
99 if (typeof(axis
) == "number") {
100 if (axis
=== 0 || axis
=== 1) {
103 throw "Dygraphs only supports two y-axes, indexed from 0-1.";
106 throw "Unknown axis : " + axis
;
108 // No axis specification means axis 0.
113 * Reparses options that are all related to series. This typically occurs when
114 * options are either updated, or source data has been made available.
116 * TODO(konigsberg): The method name is kind of weak; fix.
118 DygraphOptions
.prototype.reparseSeries
= function() {
119 var labels
= this.get("labels");
121 return; // -- can't do more for now, will parse after getting the labels.
124 this.labels_
= labels
.slice(1);
126 this.yAxes_
= [ { series
: [], options
: {}} ]; // Always one axis at least.
127 this.xAxis_
= { options
: {} };
130 // Traditionally, per-series options were specified right up there with the options. For instance
132 // labels: [ "X", "foo", "bar" ],
134 // foo : {}, // options
for foo
135 // bar : {} // options
for bar
138 // Moving forward, series really should be specified in the series element, separating them.
142 // labels: [ "X", "foo", "bar" ],
145 // foo : {}, // options
for foo
146 // bar : {} // options
for bar
150 // So, if series is found, it's expected to contain per-series data, otherwise we fall
152 var oldStyleSeries
= !this.user_
["series"];
154 if (oldStyleSeries
) {
155 var axisId
= 0; // 0-offset; there's always one.
156 // Go through once, add all the series, and for those with {} axis options, add a new axis.
157 for (var idx
= 0; idx
< this.labels_
.length
; idx
++) {
158 var seriesName
= this.labels_
[idx
];
160 var optionsForSeries
= this.user_
[seriesName
] || {};
163 var axis
= optionsForSeries
["axis"];
164 if (typeof(axis
) == 'object') {
166 this.yAxes_
[yAxis
] = { series
: [ seriesName
], options
: axis
};
169 // Associate series without axis options with axis 0.
170 if (!axis
) { // undefined
171 this.yAxes_
[0].series
.push(seriesName
);
174 this.series_
[seriesName
] = { idx
: idx
, yAxis
: yAxis
, options
: optionsForSeries
};
177 // Go through one more time and assign series to an axis defined by another
178 // series, e.g. { 'Y1: { axis: {} }, 'Y2': { axis: 'Y1' } }
179 for (var idx
= 0; idx
< this.labels_
.length
; idx
++) {
180 var seriesName
= this.labels_
[idx
];
181 var optionsForSeries
= this.series_
[seriesName
]["options"];
182 var axis
= optionsForSeries
["axis"];
184 if (typeof(axis
) == 'string') {
185 if (!this.series_
.hasOwnProperty(axis
)) {
186 Dygraph
.error("Series " + seriesName
+ " wants to share a y-axis with " +
187 "series " + axis
+ ", which does not define its own axis.");
190 var yAxis
= this.series_
[axis
].yAxis
;
191 this.series_
[seriesName
].yAxis
= yAxis
;
192 this.yAxes_
[yAxis
].series
.push(seriesName
);
196 for (var idx
= 0; idx
< this.labels_
.length
; idx
++) {
197 var seriesName
= this.labels_
[idx
];
198 var optionsForSeries
= this.user_
.series
[seriesName
] || {};
199 var yAxis
= DygraphOptions
.axisToIndex_(optionsForSeries
["axis"]);
201 this.series_
[seriesName
] = {
204 options
: optionsForSeries
};
206 if (!this.yAxes_
[yAxis
]) {
207 this.yAxes_
[yAxis
] = { series
: [ seriesName
], options
: {} };
209 this.yAxes_
[yAxis
].series
.push(seriesName
);
214 var axis_opts
= this.user_
["axes"] || {};
215 Dygraph
.update(this.yAxes_
[0].options
, axis_opts
["y"] || {});
216 if (this.yAxes_
.length
> 1) {
217 Dygraph
.update(this.yAxes_
[1].options
, axis_opts
["y2"] || {});
219 Dygraph
.update(this.xAxis_
.options
, axis_opts
["x"] || {});
223 * Get a global value.
225 * @param {string} name the name of the option.
227 DygraphOptions
.prototype.get
= function(name
) {
228 var result
= this.getGlobalUser_(name
);
229 if (result
!== null) {
232 return this.getGlobalDefault_(name
);
235 DygraphOptions
.prototype.getGlobalUser_
= function(name
) {
236 if (this.user_
.hasOwnProperty(name
)) {
237 return this.user_
[name
];
242 DygraphOptions
.prototype.getGlobalDefault_
= function(name
) {
243 if (this.global_
.hasOwnProperty(name
)) {
244 return this.global_
[name
];
246 if (Dygraph
.DEFAULT_ATTRS
.hasOwnProperty(name
)) {
247 return Dygraph
.DEFAULT_ATTRS
[name
];
253 * Get a value for a specific axis. If there is no specific value for the axis,
254 * the global value is returned.
256 * @param {string} name the name of the option.
257 * @param {string|number} axis the axis to search. Can be the string representation
258 * ("y", "y2") or the axis number (0, 1).
260 DygraphOptions
.prototype.getForAxis
= function(name
, axis
) {
264 // Since axis can be a number or a string, straighten everything out here.
265 if (typeof(axis
) == 'number') {
267 axisString
= axisIdx
=== 0 ? "y" : "y2";
269 if (axis
== "y1") { axis
= "y"; } // Standardize on 'y'. Is this bad? I think so.
272 } else if (axis
== "y2") {
274 } else if (axis
== "x") {
275 axisIdx
= -1; // simply a placeholder for below.
277 throw "Unknown axis " + axis
;
282 var userAxis
= (axisIdx
== -1) ? this.xAxis_
: this.yAxes_
[axisIdx
];
284 // Search the user-specified axis option first.
285 if (userAxis
) { // This condition could be removed if we always set up this.yAxes_ for y2.
286 var axisOptions
= userAxis
.options
;
287 if (axisOptions
.hasOwnProperty(name
)) {
288 return axisOptions
[name
];
292 // User-specified global options second.
293 // But, hack, ignore globally-specified 'logscale' for 'x' axis declaration.
294 if (!(axis
=== 'x' && name
=== 'logscale')) {
295 var result
= this.getGlobalUser_(name
);
296 if (result
!== null) {
300 // Default axis options third.
301 var defaultAxisOptions
= Dygraph
.DEFAULT_ATTRS
.axes
[axisString
];
302 if (defaultAxisOptions
.hasOwnProperty(name
)) {
303 return defaultAxisOptions
[name
];
306 // Default global options last.
307 return this.getGlobalDefault_(name
);
311 * Get a value for a specific series. If there is no specific value for the series,
312 * the value for the axis is returned (and afterwards, the global value.)
314 * @param {string} name the name of the option.
315 * @param {string} series the series to search.
317 DygraphOptions
.prototype.getForSeries
= function(name
, series
) {
318 // Honors indexes as series.
319 if (series
=== this.dygraph_
.getHighlightSeries()) {
320 if (this.highlightSeries_
.hasOwnProperty(name
)) {
321 return this.highlightSeries_
[name
];
325 if (!this.series_
.hasOwnProperty(series
)) {
326 throw "Unknown series: " + series
;
329 var seriesObj
= this.series_
[series
];
330 var seriesOptions
= seriesObj
["options"];
331 if (seriesOptions
.hasOwnProperty(name
)) {
332 return seriesOptions
[name
];
335 return this.getForAxis(name
, seriesObj
["yAxis"]);
339 * Returns the number of y-axes on the chart.
340 * @return {number} the number of axes.
342 DygraphOptions
.prototype.numAxes
= function() {
343 return this.yAxes_
.length
;
347 * Return the y-axis for a given series, specified by name.
349 DygraphOptions
.prototype.axisForSeries
= function(series
) {
350 return this.series_
[series
].yAxis
;
354 * Returns the options for the specified axis.
356 // TODO(konigsberg): this is y-axis specific. Support the x axis.
357 DygraphOptions
.prototype.axisOptions
= function(yAxis
) {
358 return this.yAxes_
[yAxis
].options
;
362 * Return the series associated with an axis.
364 DygraphOptions
.prototype.seriesForAxis
= function(yAxis
) {
365 return this.yAxes_
[yAxis
].series
;
369 * Return the list of all series, in their columnar order.
371 DygraphOptions
.prototype.seriesNames
= function() {
375 return DygraphOptions
;