From 29eb854db403e37fa6c0bd44a2b07c80ae86e001 Mon Sep 17 00:00:00 2001 From: Dan Vanderkam Date: Fri, 8 Feb 2013 15:41:01 -0500 Subject: [PATCH] add a (non-breaking) space between series name and value in the legend (Issue 307) --- plugins/legend.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/legend.js b/plugins/legend.js index 35f30b0..7406f82 100644 --- a/plugins/legend.js +++ b/plugins/legend.js @@ -245,7 +245,7 @@ generateLegendHTML = function(g, x, sel_points, oneEmWidth) { // TODO(danvk): use a template string here and make it an attribute. html += "" + " " + - pt.name + ":" + yval + ""; + pt.name + ": " + yval + ""; } return html; }; -- 2.7.4