diff --git a/_examples/horizontal_stacked_bar/output.png b/_examples/horizontal_stacked_bar/output.png index 8cb0e94..e7fce31 100644 Binary files a/_examples/horizontal_stacked_bar/output.png and b/_examples/horizontal_stacked_bar/output.png differ diff --git a/stacked_bar_chart.go b/stacked_bar_chart.go index befe99a..e9f54af 100644 --- a/stacked_bar_chart.go +++ b/stacked_bar_chart.go @@ -316,6 +316,11 @@ func (sbc StackedBarChart) drawHorizontalXAxis(r Renderer, canvasBox Box) { textBox := r.MeasureText(text) textX := tx - (textBox.Width() >> 1) textY := canvasBox.Bottom + DefaultXAxisMargin + 10 + + if t == 1 { + textX = canvasBox.Right - textBox.Width() + } + Draw.Text(r, text, textX, textY, axisStyle) } }