Fix wrong default usage in StackedBarChart
Using width instead of height. Signed-off-by: Vinicius Tinti <vinicius.tinti@almg.gov.br>
This commit is contained in:
parent
9852fce5a1
commit
5bc9d66339
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ func (sbc StackedBarChart) GetWidth() int {
|
|||
// GetHeight returns the chart height or the default value.
|
||||
func (sbc StackedBarChart) GetHeight() int {
|
||||
if sbc.Height == 0 {
|
||||
return DefaultChartWidth
|
||||
return DefaultChartHeight
|
||||
}
|
||||
return sbc.Height
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue