答案 0 :(得分:0)
AFAIK,AChartEngine不支持主要和次要网格线。尽管可以分别启用/禁用x和y网格线,但是只能启用一组网格线。
renderer.setShowGridX(true);
renderer.setShowGridY(false);
如果您绝对需要主要/次要网格线,建议您尝试Sfchart。它确实支持major and minor axis:
chart.getSecondaryAxis().setShowMajorGridLines(true);
chart.getSecondaryAxis().setShowMinorGridLines(true);
但是,请务必在使用前检查其许可条款。