栏内的MPAndroidChart标签

时间:2016-07-15 12:13:16

标签: java android mpandroidchart

我正在使用Horizo​​ntalBarChart我想在Bar内部或中间绘制一个Label(供应商的名称),在BarDaset中有一些名为setLabel的东西,但它不起作用。 这是我的代码:

WHERE prod.street_num = new.street_num AND prod.street_name LIKE (CONCAT('%',new.street_name,'%'))

1 个答案:

答案 0 :(得分:3)

尝试使用:

chart.getXAxis().setPosition(XAxisPosition.BOTTOM_INSIDE);

或者

chart.getXAxis().setPosition(XAxisPosition.TOP_INSIDE);

这将解决您的问题。