This commit is contained in:
Tree Xie 2021-12-12 10:32:22 +08:00 committed by GitHub
commit 40c1e9fc85
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,
}