From c6455256046bef3f4fbae440a2c089abf043bf23 Mon Sep 17 00:00:00 2001 From: Michael Koziarski Date: Wed, 6 May 2020 09:43:08 +1200 Subject: [PATCH] Ensure that LegendThin uses the provided style Enables callers to customize the box style which is currently effectively hardcoded. --- legend.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legend.go b/legend.go index 9d16ced..5c2c0b2 100644 --- a/legend.go +++ b/legend.go @@ -179,7 +179,7 @@ func LegendThin(c *Chart, userDefaults ...Style) Renderable { Bottom: legendYMargin + legendBoxHeight, } - Draw.Box(r, legendBox, legendDefaults) + Draw.Box(r, legendBox, legendStyle) r.SetFont(legendStyle.GetFont()) r.SetFontColor(legendStyle.GetFontColor())