UDP iperf working
diff --git a/web/ons-demo/js/app.js b/web/ons-demo/js/app.js
index bc3cc6d..ea0ac83 100644
--- a/web/ons-demo/js/app.js
+++ b/web/ons-demo/js/app.js
@@ -268,9 +268,9 @@
 		var i;
 		for (i=0; i < pointsToDisplay; ++i) {
 			var sample = flow.iperfData.samples[i];
-			var height = 32 * sample/50000000;
-			if (height > 32)
-				height = 32;
+			var height = 30 * sample/1000000;
+			if (height > 30)
+				height = 30;
 			pts.push({
 				x: i * 1000/(pointsToDisplay-1),
 				y: 32 - height