diff --git a/examples/horizontal_stacked_bar/main.go b/examples/horizontal_stacked_bar/main.go index f078d09..8c128d1 100644 --- a/examples/horizontal_stacked_bar/main.go +++ b/examples/horizontal_stacked_bar/main.go @@ -8,9 +8,6 @@ import ( ) func main() { - chart.DefaultBackgroundColor = chart.ColorTransparent - chart.DefaultCanvasColor = chart.ColorTransparent - barWidth := 80 var ( diff --git a/examples/horizontal_stacked_bar/output.png b/examples/horizontal_stacked_bar/output.png index d8ad123..c8a94bb 100644 Binary files a/examples/horizontal_stacked_bar/output.png and b/examples/horizontal_stacked_bar/output.png differ diff --git a/examples/stacked_bar/output.png b/examples/stacked_bar/output.png index c503c7b..7f85c7e 100644 Binary files a/examples/stacked_bar/output.png and b/examples/stacked_bar/output.png differ diff --git a/examples/stacked_bar_labels/main.go b/examples/stacked_bar_labels/main.go index 314f1b4..bff13aa 100644 --- a/examples/stacked_bar_labels/main.go +++ b/examples/stacked_bar_labels/main.go @@ -8,9 +8,6 @@ import ( ) func main() { - chart.DefaultBackgroundColor = chart.ColorTransparent - chart.DefaultCanvasColor = chart.ColorTransparent - barWidth := 120 var ( diff --git a/examples/stacked_bar_labels/output.png b/examples/stacked_bar_labels/output.png index d5f7e97..749f4cd 100644 Binary files a/examples/stacked_bar_labels/output.png and b/examples/stacked_bar_labels/output.png differ diff --git a/stacked_bar_chart.go b/stacked_bar_chart.go index b0c781c..d6e056a 100644 --- a/stacked_bar_chart.go +++ b/stacked_bar_chart.go @@ -115,6 +115,8 @@ func (sbc StackedBarChart) Render(rp RendererProvider, w io.Writer) error { } r.SetDPI(sbc.GetDPI(DefaultDPI)) + sbc.drawBackground(r) + var canvasBox Box if sbc.IsHorizontal { canvasBox = sbc.getHorizontalAdjustedCanvasBox(r, sbc.getDefaultCanvasBox()) @@ -156,6 +158,25 @@ func (sbc StackedBarChart) drawBars(r Renderer, canvasBox Box) { } } +func (sbc StackedBarChart) drawBackground(r Renderer) { + Draw.Box(r, Box{ + Right: sbc.GetWidth(), + Bottom: sbc.GetHeight(), + }, sbc.getBackgroundStyle()) +} + +func (sbc StackedBarChart) getBackgroundStyle() Style { + return sbc.Background.InheritFrom(sbc.styleDefaultsBackground()) +} + +func (sbc StackedBarChart) styleDefaultsBackground() Style { + return Style{ + FillColor: sbc.GetColorPalette().BackgroundColor(), + StrokeColor: sbc.GetColorPalette().BackgroundStrokeColor(), + StrokeWidth: DefaultStrokeWidth, + } +} + func (sbc StackedBarChart) drawHorizontalBars(r Renderer, canvasBox Box) { yOffset := canvasBox.Top for _, bar := range sbc.Bars { @@ -477,7 +498,6 @@ func (sbc StackedBarChart) getAdjustedCanvasBox(r Renderer, canvasBox Box) Box { Right: canvasBox.Left + totalWidth, Bottom: canvasBox.Bottom, } - } func (sbc StackedBarChart) getHorizontalAdjustedCanvasBox(r Renderer, canvasBox Box) Box {