summaryrefslogtreecommitdiff
path: root/jquery.flot.symbol.js
diff options
context:
space:
mode:
Diffstat (limited to 'jquery.flot.symbol.js')
-rw-r--r--jquery.flot.symbol.js21
1 files changed, 11 insertions, 10 deletions
diff --git a/jquery.flot.symbol.js b/jquery.flot.symbol.js
index a32fe31..cc181ff 100644
--- a/jquery.flot.symbol.js
+++ b/jquery.flot.symbol.js
@@ -1,14 +1,15 @@
-/*
-Flot plugin that adds some extra symbols for plotting points.
+/* Flot plugin that adds some extra symbols for plotting points.
-The symbols are accessed as strings through the standard symbol
-choice:
+Copyright (c) 2007-2013 IOLA and Ole Laursen.
+Licensed under the MIT license.
- series: {
- points: {
- symbol: "square" // or "diamond", "triangle", "cross"
- }
- }
+The symbols are accessed as strings through the standard symbol options:
+
+ series: {
+ points: {
+ symbol: "square" // or "diamond", "triangle", "cross"
+ }
+ }
*/
@@ -51,7 +52,7 @@ choice:
ctx.moveTo(x - size, y + size);
ctx.lineTo(x + size, y - size);
}
- }
+ };
var s = series.points.symbol;
if (handlers[s])