Only draw StackedBarChart label if it exists
This commit is contained in:
parent
7b48d56e0b
commit
1a62cfa10f
@ -79,15 +79,17 @@ func (self *StackedBarChart) Draw(buf *Buffer) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// draw label
|
// draw label
|
||||||
labelXCoordinate := barXCoordinate + MaxInt(
|
if i < len(self.Labels) {
|
||||||
int((float64(self.BarWidth)/2))-int((float64(rw.StringWidth(self.Labels[i]))/2)),
|
labelXCoordinate := barXCoordinate + MaxInt(
|
||||||
0,
|
int((float64(self.BarWidth)/2))-int((float64(rw.StringWidth(self.Labels[i]))/2)),
|
||||||
)
|
0,
|
||||||
buf.SetString(
|
)
|
||||||
TrimString(self.Labels[i], self.BarWidth),
|
buf.SetString(
|
||||||
SelectStyle(self.LabelStyles, i),
|
TrimString(self.Labels[i], self.BarWidth),
|
||||||
image.Pt(labelXCoordinate, self.Inner.Max.Y-1),
|
SelectStyle(self.LabelStyles, i),
|
||||||
)
|
image.Pt(labelXCoordinate, self.Inner.Max.Y-1),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
barXCoordinate += (self.BarWidth + self.BarGap)
|
barXCoordinate += (self.BarWidth + self.BarGap)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user