Search code examples
androidandroidplot

How to center domain label below bar in a bar chart?


Currently, each bar's domain label appears below the left hand side of each bar, as pictured here:

enter image description here

Is there a way to position labels below each bar's center ?


Solution

  • This should do the trick:

    XYGraphWidget.LineLabelStyle style = plot.getGraph().getLineLabelStyle(XYGraphWidget.Edge.BOTTOM);
    style.getPaint().setTextAlign(Paint.Align.CENTER);