From 757665683e40c55023e99acd116bf4826149ea13 Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Fri, 30 Jan 2015 15:35:36 -0800 Subject: [PATCH] [Plot] Use a lossless subscription Utilize lossless subscription to ensure that points are not overwritten before being plotted from live telemetry. WTD-784. --- platform/features/plot/src/PlotController.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/platform/features/plot/src/PlotController.js b/platform/features/plot/src/PlotController.js index 0050a5a22e..ff013092e8 100644 --- a/platform/features/plot/src/PlotController.js +++ b/platform/features/plot/src/PlotController.js @@ -101,7 +101,8 @@ define( } subscription = domainObject && telemetrySubscriber.subscribe( domainObject, - updateValues + updateValues, + true // Lossless ); if (subscription) { setupAxes(subscription.getMetadata());