algo autowidth
This commit is contained in:
parent
255dde81ad
commit
5b9d15cd8b
1 changed files with 15 additions and 0 deletions
15
bar_chart.go
15
bar_chart.go
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue