algo autowidth

This commit is contained in:
Enrico 2019-07-26 16:48:07 +02:00
parent 255dde81ad
commit 5b9d15cd8b

View file

@ -61,6 +61,8 @@ func (bc BarChart) GetFont() *truetype.Font {
func (bc BarChart) GetWidth() int {
if bc.Width == 0 {
return DefaultChartWidth
} else if bc.Width == -1 {
return bc.autoWidth()
}
return bc.Width
}
@ -89,6 +91,19 @@ func (bc BarChart) GetBarWidth() int {
return bc.BarWidth
}
func (bc BarChart) autoWidth() (totalWidth int) {
totalWidth = 0
barWidth := bc.GetBarWidth()
barSpacing := bc.GetBarSpacing()
for _, _ = range bc.Bars {
totalWidth += barWidth + barSpacing
}
return
}
// Render renders the chart with the given renderer to the given io.Writer.
func (bc BarChart) Render(rp RendererProvider, w io.Writer) error {
if len(bc.Bars) == 0 {