From 0f6769665a8e053c4e4a3ade855f517c213f26dc Mon Sep 17 00:00:00 2001 From: jonghyeon Date: Fri, 6 Mar 2020 17:26:15 +0900 Subject: [PATCH] Graph: Improve point rendering performance (#22610) this PR improves canvas rendering performance in drawSeriesPoints --- public/vendor/flot/jquery.flot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/vendor/flot/jquery.flot.js b/public/vendor/flot/jquery.flot.js index 22cb2b8ee26..8011e82aa53 100644 --- a/public/vendor/flot/jquery.flot.js +++ b/public/vendor/flot/jquery.flot.js @@ -2621,8 +2621,8 @@ Licensed under the MIT license. ctx.fillStyle = fillStyle; ctx.fill(); } - ctx.stroke(); } + ctx.stroke(); } ctx.save();