From ec819693ccba561391735566913b5c78c064e238 Mon Sep 17 00:00:00 2001 From: "thomas.duval" Date: Wed, 29 Sep 2021 17:16:47 +1000 Subject: [PATCH] thomas-AOT-4029 add arguments to the draw symbol to get datapoints and time series --- src/jquery.flot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jquery.flot.js b/src/jquery.flot.js index 30e4e0d..f9293bc 100644 --- a/src/jquery.flot.js +++ b/src/jquery.flot.js @@ -3082,7 +3082,7 @@ Licensed under the MIT license. if (symbol === "circle") { ctx.arc(x, y, radius, 0, shadow ? Math.PI : Math.PI * 2, false); } else { - symbol(ctx, x, y, radius, shadow); + symbol(ctx, x, y, radius, shadow, datapoints, series); } ctx.closePath();