我正在使用HorizontalBarChart我想在Bar内部或中间绘制一个Label(供应商的名称),在BarDaset中有一些名为setLabel的东西,但它不起作用。 这是我的代码:
WHERE prod.street_num = new.street_num AND prod.street_name LIKE (CONCAT('%',new.street_name,'%'))
答案 0 :(得分:3)
尝试使用:
chart.getXAxis().setPosition(XAxisPosition.BOTTOM_INSIDE);
或者
chart.getXAxis().setPosition(XAxisPosition.TOP_INSIDE);
这将解决您的问题。