From 5bb1a1f0bc71a71dce03884ae08cca9c409996ea Mon Sep 17 00:00:00 2001 From: vicanso Date: Sun, 12 Dec 2021 10:30:12 +0800 Subject: [PATCH] feat: support customization of dot fill color, #181 --- style.go | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/style.go b/style.go index c601d6d..b0dec5c 100644 --- a/style.go +++ b/style.go @@ -52,8 +52,9 @@ type Style struct { StrokeColor drawing.Color StrokeDashArray []float64 - DotColor drawing.Color - DotWidth float64 + DotColor drawing.Color + DotFillColor drawing.Color + DotWidth float64 DotWidthProvider SizeProvider DotColorProvider DotColorProvider @@ -429,10 +430,14 @@ func (s Style) GetFillOptions() Style { // GetDotOptions returns the dot components. func (s Style) GetDotOptions() Style { + fillColor := s.DotColor + if !s.DotFillColor.IsZero() { + fillColor = s.DotFillColor + } return Style{ ClassName: s.ClassName, StrokeDashArray: nil, - FillColor: s.DotColor, + FillColor: fillColor, StrokeColor: s.DotColor, StrokeWidth: 1.0, }