[Plot] Try multiple chart options

Choose among multiple chart options, WTD-1070.
This commit is contained in:
Victor Woeltjen
2015-04-06 14:15:34 -07:00
parent eba980c720
commit 3db8c1a32d
2 changed files with 38 additions and 13 deletions

View File

@@ -87,7 +87,7 @@ define(
}
// ...and add points to it...
for (i = 2; i < buf.length - 1; i = i + 2) {
for (i = 2; i < points * 2; i = i + 2) {
c2d.lineTo(x(buf[i]), y(buf[i + 1]));
}