diff --git a/static/js/conference/components/classes/graphs/jitterGraphData.js b/static/js/conference/components/classes/graphs/jitterGraphData.js index fa0ae97..a5ffd78 100644 --- a/static/js/conference/components/classes/graphs/jitterGraphData.js +++ b/static/js/conference/components/classes/graphs/jitterGraphData.js @@ -26,7 +26,7 @@ class JitterGraphData extends DataForGraphs { const yPoint = this._calculateJitter(stat, key); if (Number.isFinite(yPoint)) { const xPoint = this._statTimeEpoch(stat); - const point = [xPoint, Number(yPoint.toFixed(2))]; + const point = [xPoint, Number(yPoint.toFixed(4))]; data[stat.connection].push(point); } diff --git a/static/js/conference/components/classes/graphs/packetLossGraphData.js b/static/js/conference/components/classes/graphs/packetLossGraphData.js index c90d4ff..51a24bd 100644 --- a/static/js/conference/components/classes/graphs/packetLossGraphData.js +++ b/static/js/conference/components/classes/graphs/packetLossGraphData.js @@ -34,7 +34,7 @@ class PacketLossGraphData extends DataForGraphs { if (Number.isFinite(yPoint)) { const xPoint = this._statTimeEpoch(stat); - const point = [xPoint, Number(yPoint.toFixed(1))]; + const point = [xPoint, Number(yPoint.toFixed(4))]; data[stat.connection].push(point); }