我在我的应用程序中使用了achartengine的条形图。我的x轴不是数字,但是有文本项。就像下面显示的图片一样。有没有办法使用achartengine制作这样的条形图?我只能在x轴上显示文本,而不在比例尺上显示吗?

最佳答案

我也有clearXTextLabels()的问题,请尝试以下操作:

renderer.setXlabels(0);
renderer.addXTextLabel(0,"Electronics");
renderer.addXTextLabel(1,"Medical");
...

09-27 05:29