summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sfiligoi <isfiligoi@ucsd.edu>2013-11-08 05:38:00 +0000
committerIgor Sfiligoi <isfiligoi@ucsd.edu>2013-11-08 05:38:00 +0000
commit996518fa0ac0bc0ebb1a830d302ba62ea3565b10 (patch)
treebeeab87429a1ccbafdcc78de7a9e77b3949dae77
parent46580016d81a6fdeccdddb2d3fe6cc6c934c7d57 (diff)
Change argument order for rrdFlotMatrixAsync, for better groupping
-rw-r--r--src/lib/rrdFlotAsync.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/rrdFlotAsync.js b/src/lib/rrdFlotAsync.js
index dbf6293..1b90725 100644
--- a/src/lib/rrdFlotAsync.js
+++ b/src/lib/rrdFlotAsync.js
@@ -209,8 +209,9 @@ rrdFlotSumAsync.prototype.callback = function() {
/* Use url_list==null if you do not know the urls yet */
function rrdFlotMatrixAsync(html_id,
- url_pair_list, ds_list, // see rrdFlotMatrix.js::rrdFlotMatrix for documentation of these
+ url_pair_list, // see rrdFlotMatrix.js::rrdFlotMatrix for documentation
file_options, // see rrdFile.js::RRDFile for documentation
+ ds_list, // see rrdFlotMatrix.js::rrdFlotMatrix for documentation
graph_options, rrd_graph_options, rrdflot_defaults, // see rrdFlotMatrix.js::rrdFlotMatrix for documentation of these
ds_op_list, // if defined, see rrdFilter.js::RRDFilterOp for documentation
rra_op_list, // if defined, see rrdFilter.js::RRDRRAFilterAvg for documentation
@@ -218,8 +219,8 @@ function rrdFlotMatrixAsync(html_id,
) {
this.html_id=html_id;
this.url_pair_list=url_pair_list;
- this.ds_list=ds_list;
this.file_options=file_options;
+ this.ds_list=ds_list;
this.graph_options=graph_options;
this.rrd_graph_options=rrd_graph_options;
this.rrdflot_defaults=rrdflot_defaults;