diff options
author | Frank Wuerthwein <fkw@ucsd.edu> | 2009-05-10 23:45:24 +0000 |
---|---|---|
committer | Frank Wuerthwein <fkw@ucsd.edu> | 2009-05-10 23:45:24 +0000 |
commit | 47b3b7f4341689639d03b72549eae098f7d75985 (patch) | |
tree | 01b06dde2315c4085c023d49238d9613c118d853 | |
parent | 7b29a9826e9b0215c08f04fab71a860faea9b101 (diff) |
Fix comment
-rw-r--r-- | src/lib/rrdFlot.js | 4 | ||||
-rw-r--r-- | src/lib/rrdFlotMatrix.js | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/rrdFlot.js b/src/lib/rrdFlot.js index a8672cc..cbb6ca8 100644 --- a/src/lib/rrdFlot.js +++ b/src/lib/rrdFlot.js @@ -36,8 +36,8 @@ * with each element being a graph_option
* The defaults for each element are
* {
- * title: label or ds_name // this is what is displayed at the radio button
- * checked: first_ds_in_list? //boolean
+ * title: label or ds_name // this is what is displayed in the checkboxes
+ * checked: first_ds_in_list? // boolean
* label: title or ds_name // this is what is displayed in the legend
* color: ds_index // see Flot docs for details
* lines: { show:true } // see Flot docs for details
diff --git a/src/lib/rrdFlotMatrix.js b/src/lib/rrdFlotMatrix.js index 2776137..198d33b 100644 --- a/src/lib/rrdFlotMatrix.js +++ b/src/lib/rrdFlotMatrix.js @@ -19,7 +19,7 @@ /*
* The rrd_files is a list of
* [rrd_id,rrd_file] pairs
- * All rrd_files must have the same step, the same DSes amd the same number of RRAs.
+ * All rrd_files must have the same step, the same DSes and the same number of RRAs.
*
*/
@@ -50,11 +50,11 @@ * with each element being a graph_option
* The defaults for each element are
* {
- * title: label or rrd_name // this is what is displayed at the radio button
- * checked: true //boolean
+ * title: label or rrd_name // this is what is displayed in the checkboxes
+ * checked: true // boolean
* label: title or rrd_name // this is what is displayed in the legend
* color: rrd_index // see Flot docs for details
- * lines: { show:true, fill: true, fillColor:color } // see Flot docs for details
+ * lines: { show:true, fill: true, fillColor:color } // see Flot docs for details
* }
*/
|