This commit is contained in:
Kenneth Shaw 2024-09-10 23:04:38 +08:00 committed by GitHub
commit d4c19ca210
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 21 additions and 7 deletions

View file

@ -8,9 +8,6 @@ import (
) )
func main() { func main() {
chart.DefaultBackgroundColor = chart.ColorTransparent
chart.DefaultCanvasColor = chart.ColorTransparent
barWidth := 80 barWidth := 80
var ( var (

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 32 KiB

View file

@ -8,9 +8,6 @@ import (
) )
func main() { func main() {
chart.DefaultBackgroundColor = chart.ColorTransparent
chart.DefaultCanvasColor = chart.ColorTransparent
barWidth := 120 barWidth := 120
var ( var (

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 23 KiB

View file

@ -115,6 +115,8 @@ func (sbc StackedBarChart) Render(rp RendererProvider, w io.Writer) error {
} }
r.SetDPI(sbc.GetDPI(DefaultDPI)) r.SetDPI(sbc.GetDPI(DefaultDPI))
sbc.drawBackground(r)
var canvasBox Box var canvasBox Box
if sbc.IsHorizontal { if sbc.IsHorizontal {
canvasBox = sbc.getHorizontalAdjustedCanvasBox(r, sbc.getDefaultCanvasBox()) 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) { func (sbc StackedBarChart) drawHorizontalBars(r Renderer, canvasBox Box) {
yOffset := canvasBox.Top yOffset := canvasBox.Top
for _, bar := range sbc.Bars { for _, bar := range sbc.Bars {
@ -477,7 +498,6 @@ func (sbc StackedBarChart) getAdjustedCanvasBox(r Renderer, canvasBox Box) Box {
Right: canvasBox.Left + totalWidth, Right: canvasBox.Left + totalWidth,
Bottom: canvasBox.Bottom, Bottom: canvasBox.Bottom,
} }
} }
func (sbc StackedBarChart) getHorizontalAdjustedCanvasBox(r Renderer, canvasBox Box) Box { func (sbc StackedBarChart) getHorizontalAdjustedCanvasBox(r Renderer, canvasBox Box) Box {